@allratestoday/mcp-server 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/client.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
English | [简体中文](./README-zh-CN.md)
|
|
4
4
|
|
|
5
|
-
MCP server that gives AI coding tools — **Claude Code**, **Cursor**, **Claude Desktop**, and any other Model Context Protocol client — real-time currency exchange rates, historical data, and
|
|
5
|
+
MCP server that gives AI coding tools — **Claude Code**, **Cursor**, **Claude Desktop**, and any other Model Context Protocol client — real-time currency exchange rates, historical data, and multi-currency lookups from [AllRatesToday](https://allratestoday.com).
|
|
6
6
|
|
|
7
7
|
Ask your assistant things like:
|
|
8
8
|
|
package/dist/client.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -102,7 +102,7 @@ async function main() {
|
|
|
102
102
|
apiKey,
|
|
103
103
|
baseUrl: process.env.ALLRATES_BASE_URL,
|
|
104
104
|
});
|
|
105
|
-
const server = new Server({ name: 'allratestoday-mcp', version: '0.3.
|
|
105
|
+
const server = new Server({ name: 'allratestoday-mcp', version: '0.3.1' }, { capabilities: { tools: {} } });
|
|
106
106
|
server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools }));
|
|
107
107
|
server.setRequestHandler(CallToolRequestSchema, async (req) => {
|
|
108
108
|
const { name, arguments: args = {} } = req.params;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@allratestoday/mcp-server",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"mcpName": "io.github.cahthuranag/mcp-server",
|
|
5
5
|
"description": "MCP server for AllRatesToday — let AI coding tools (Claude Code, Cursor, Claude Desktop) fetch real-time and historical currency exchange rates.",
|
|
6
6
|
"keywords": [
|