-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@exchangerateapi/mcp-server",
"version": "1.0.2",
"mcpName": "io.github.Exchange-RateAPI/mcp-server",
"description": "MCP server for Exchange Rate API — let AI coding tools (Claude Code, Cursor, Claude Desktop, Windsurf) fetch real-time and historical currency exchange rates.",
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"cursor",
"currency",
"exchange-rate",
"forex",
"exchange-rateapi"
],
"license": "MIT",
"homepage": "https://exchange-rateapi.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Exchange-RateAPI/mcp-server.git"
},
"bugs": "https://github.com/Exchange-RateAPI/mcp-server/issues",
"type": "module",
"main": "dist/index.js",
"bin": {
"exchange-rateapi-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"dev": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.0",
"typescript": "^5.5.0"
}
}