-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.16 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "bcb-br-mcp",
"version": "1.11.0",
"mcpName": "io.github.SidneyBissoli/bcb-br-mcp",
"description": "MCP server for the Brazilian Central Bank (Banco Central do Brasil, BCB): SGS time series (Selic, IPCA, exchange rates, GDP and a curated catalogue of indicators), Focus market expectations, PTAX exchange rates and the Olinda open-data platform, with a provenance block on every response.",
"type": "module",
"main": "dist/index.js",
"bin": {
"bcb-br-mcp": "dist/index.js"
},
"scripts": {
"version": "node scripts/sync-version.mjs && git add -u",
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"dump:surface": "node scripts/dump-surface.mjs",
"smoke": "node scripts/smoke-mcp.mjs"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"bcb",
"banco-central",
"banco-central-do-brasil",
"central-bank",
"brazilian-central-bank",
"sgs",
"brazil",
"brazilian",
"selic",
"ipca",
"exchange-rate",
"inflation",
"financial-data",
"economic-data",
"gdp",
"ai-tools",
"claude",
"cursor",
"series-temporais",
"time-series",
"cambio"
],
"author": "Sidney Bissoli <sbissoli76@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SidneyBissoli/bcb-br-mcp.git"
},
"bugs": {
"url": "https://github.com/SidneyBissoli/bcb-br-mcp/issues"
},
"homepage": "https://bcb.sidneybissoli.com",
"engines": {
"node": ">=22"
},
"files": [
"dist"
],
"dependencies": {
"@modelcontextprotocol/server": "^2.0.0",
"@sbissoli/mcp-provenance": "^0.1.0",
"@sbissoli/mcp-search": "^0.3.0",
"@sbissoli/mcp-stats": "^0.2.0"
},
"devDependencies": {
"@modelcontextprotocol/client": "^2.0.0",
"@sbissoli/mcp-evals": "^0.1.0",
"@types/node": "^26.4.1",
"tsx": "^4.23.13",
"typescript": "^7.0.2",
"vite": "^8.2.2",
"vitest": "^5.0.0"
}
}