Currency Converter MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Currency Converter MCP Serverconvert 50 USD to EUR"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-server
Currency Converter MCP Server
A simple Model Context Protocol (MCP) server that exposes a convert_currency tool, allowing MCP-compatible clients (like Claude Desktop) to convert an amount from one currency to another.
Note: This is a learning/demo project. The conversion rate is currently a hardcoded placeholder (
1.2) and not a live exchange rate.
Features
🔌 Built with the official
@modelcontextprotocol/sdk🪙 Exposes one tool:
convert_currency📡 Communicates over stdio transport
✅ Input validation via Zod
Related MCP server: UniRate MCP
Prerequisites
Node.js v18 or higher
npm (comes with Node.js)
Installation
git clone https://github.com/nehamangal/mcp-server.git
cd mcp-server
npm installUsage
Run the server directly
node index.jsThe server communicates over stdio, so running it standalone in a terminal won't show much — you'll just see:
MCP server running on stdioIt's meant to be launched by an MCP client, not run interactively.
Connect it to Claude Desktop
Add the server to your Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"currency-converter": {
"command": "node",
"args": ["/absolute/path/to/your/index.js"]
}
}
}Restart Claude Desktop, and the convert_currency tool should appear in the tools list.
Tool Reference
convert_currency
Converts an amount from one currency to another.
Parameter | Type | Description |
|
| The amount of money to convert |
|
| Currency code to convert from (e.g., |
|
| Currency code to convert to (e.g., |
Example call:
{
"amount": 100,
"fromCurrency": "USD",
"toCurrency": "EUR"
}Example response:
100 USD is approximately 120.00 EURProject Structure
.
├── index.js # MCP server entry point
├── package.json
└── README.mdThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nehamangal/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server