-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.35 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
51
52
53
{
"name": "bcb-meios-pagamento-mcp",
"version": "1.2.0",
"description": "Servidor MCP para API de Dados Abertos de Meios de Pagamento do Banco Central do Brasil",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node dist/index.js",
"start:http": "node dist/http-server.js",
"dev": "tsc --watch & node --watch dist/index.js",
"dev:http": "tsc --watch & node --watch dist/http-server.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"banco-central",
"bcb",
"meios-de-pagamento",
"dados-abertos",
"brasil",
"pix",
"cartoes",
"pagamento",
"openai",
"gpt-builder",
"chatgpt",
"claude"
],
"author": "derikfernandes",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/derikfernandes/bcb-meios-pagamento-mcp.git"
},
"bugs": {
"url": "https://github.com/derikfernandes/bcb-meios-pagamento-mcp/issues"
},
"homepage": "https://github.com/derikfernandes/bcb-meios-pagamento-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"express": "^4.18.2",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"typescript": "^5.7.3"
}
}