pluggy-mcp 0.1.0
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/LICENSE +21 -0
- package/README.md +113 -0
- package/dist/index.js +29409 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pluggy-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server for Pluggy — Open Finance Brasil aggregator (ITP/TPP)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"pluggy-mcp": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"private": false,
|
|
14
|
+
"scripts": {
|
|
15
|
+
"prepare": "husky",
|
|
16
|
+
"commit": "cz",
|
|
17
|
+
"build": "bun build --target=node --outdir=dist src/index.ts",
|
|
18
|
+
"start": "node dist/index.js",
|
|
19
|
+
"test": "bun test",
|
|
20
|
+
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
|
|
21
|
+
"secretlint": "secretlint",
|
|
22
|
+
"commitlint": "commitlint",
|
|
23
|
+
"devmoji": "devmoji"
|
|
24
|
+
},
|
|
25
|
+
"config": {
|
|
26
|
+
"commitizen": {
|
|
27
|
+
"path": "cz-conventional-changelog"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
32
|
+
"zod": "^4.4.3"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@commitlint/cli": "^21.0.2",
|
|
36
|
+
"@commitlint/config-conventional": "^21.0.2",
|
|
37
|
+
"@secretlint/secretlint-rule-preset-recommend": "^13.0.2",
|
|
38
|
+
"@types/bun": "latest",
|
|
39
|
+
"@types/node": "^25.9.2",
|
|
40
|
+
"commitizen": "^4.3.1",
|
|
41
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
42
|
+
"devmoji": "^2.3.0",
|
|
43
|
+
"husky": "^9.1.7",
|
|
44
|
+
"secretlint": "^13.0.2",
|
|
45
|
+
"typescript": "^6.0.3"
|
|
46
|
+
},
|
|
47
|
+
"peerDependencies": {
|
|
48
|
+
"typescript": "^6.0.3"
|
|
49
|
+
},
|
|
50
|
+
"license": "MIT",
|
|
51
|
+
"keywords": [
|
|
52
|
+
"mcp",
|
|
53
|
+
"pluggy",
|
|
54
|
+
"open-finance",
|
|
55
|
+
"brazil",
|
|
56
|
+
"banking",
|
|
57
|
+
"aggregator",
|
|
58
|
+
"ofb",
|
|
59
|
+
"tpp"
|
|
60
|
+
]
|
|
61
|
+
}
|