bestchangelisted
Install: claude install-skill SwiftAdviser/public-skills
# BestChange
Use this skill when the user asks for exchanger options through BestChange.
This file is the full agent contract. Do not rely on README files, source code, or guessed BestChange codes.
## Prerequisites
This skill requires the hosted BestChange MCP server to be connected in the agent client. Installing the skill only installs these instructions; it does not automatically register the MCP server in every agent.
MCP endpoint:
```text
POST https://bestchange-mcp.krutovoy.me/mcp
```
Claude Code setup:
```bash
claude mcp add --transport http bestchange https://bestchange-mcp.krutovoy.me/mcp
claude mcp list
```
Then restart Claude Code or run `/mcp` inside Claude Code and confirm the `bestchange` server is connected.
Expected MCP tools:
1. `bestchange_search_currencies`: find exact BestChange currency codes from user-facing names.
2. `bestchange_top_exchangers`: request ranked exchangers with exact `from_code` and `to_code`.
3. `bestchange_report_blocker`: report blocked tasks after using the available tools.
If these tools are not available, do not invent rates, reserves, exchanger names, or links. Tell the user:
```text
The BestChange skill is installed, but the BestChange MCP server is not connected in this agent client, so I cannot fetch live rates. Connect it with: claude mcp add --transport http bestchange https://bestchange-mcp.krutovoy.me/mcp, then restart the agent or check /mcp.
```
Do not use natural-language pair parsing as the main flow.
## T