How to use the AllRatesToday MCP Server with Claude or Cursor? #6
Answered
by
cahthuranag
cahthuranag
asked this question in
Q&A
|
I heard AllRatesToday has an MCP server for AI coding assistants. How do I set it up? AnswerThe MCP server lets Claude Code, Cursor, Claude Desktop, and other MCP-compatible tools fetch live exchange rates. Install: npm install -g @allratestoday/mcp-serverClaude Code setup — add to your project's {
"mcpServers": {
"allratestoday": {
"command": "npx",
"args": ["-y", "@allratestoday/mcp-server"],
"env": {
"ALLRATESTODAY_API_KEY": "art_live_YOUR_KEY"
}
}
}
}Cursor setup — add to {
"mcpServers": {
"allratestoday": {
"command": "npx",
"args": ["-y", "@allratestoday/mcp-server"],
"env": {
"ALLRATESTODAY_API_KEY": "art_live_YOUR_KEY"
}
}
}
}After setup, your AI assistant can answer questions like:
Get your API key: allratestoday.com/register |
Answered by
cahthuranag
Jun 21, 2026
Replies: 1 comment
|
The MCP server lets Claude Code, Cursor, Claude Desktop, and other MCP-compatible tools fetch live exchange rates. Install: npm install -g @allratestoday/mcp-serverClaude Code setup — add to your project's {
"mcpServers": {
"allratestoday": {
"command": "npx",
"args": ["-y", "@allratestoday/mcp-server"],
"env": {
"ALLRATESTODAY_API_KEY": "art_live_YOUR_KEY"
}
}
}
}Cursor setup — add to {
"mcpServers": {
"allratestoday": {
"command": "npx",
"args": ["-y", "@allratestoday/mcp-server"],
"env": {
"ALLRATESTODAY_API_KEY": "art_live_YOUR_KEY"
}
}
}
}After setup, your AI assistant can answer questions like:
Get your API key: allratestoday.com/register |
0 replies
Answer selected by
cahthuranag
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The MCP server lets Claude Code, Cursor, Claude Desktop, and other MCP-compatible tools fetch live exchange rates.
Install:
Claude Code setup — add to your project's
.mcp.json:{ "mcpServers": { "allratestoday": { "command": "npx", "args": ["-y", "@allratestoday/mcp-server"], "env": { "ALLRATESTODAY_API_KEY": "art_live_YOUR_KEY" } } } }Cursor setup — add to
.cursor/mcp.json:{ "mcpServers": { "allratestoday": { "command": "npx", "args": ["-y", "@allratestoday/mcp-server"], "env": { "ALLRATESTODAY_API_KEY": "art_live_YOUR_KEY" } } } }After setup, your AI assist…