fin-app-mcp 2.0.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.
Files changed (4) hide show
  1. package/README.md +118 -0
  2. package/docs/guia.md +271 -0
  3. package/index.mjs +1111 -0
  4. package/package.json +37 -0
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "fin-app-mcp",
3
+ "version": "2.0.0",
4
+ "description": "MCP server para o FIN App — finanças pessoais. Expõe tools para agents LLM operarem contas, despesas, faturas de cartão, bills recorrentes e mais.",
5
+ "type": "module",
6
+ "main": "index.mjs",
7
+ "bin": {
8
+ "fin-app-mcp": "index.mjs"
9
+ },
10
+ "files": [
11
+ "index.mjs",
12
+ "docs/guia.md",
13
+ "README.md"
14
+ ],
15
+ "keywords": [
16
+ "mcp",
17
+ "model-context-protocol",
18
+ "fin-app",
19
+ "finance",
20
+ "claude",
21
+ "llm-tools"
22
+ ],
23
+ "author": "Pedro Menezes",
24
+ "license": "MIT",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/pe-menezes/fin-app.git",
28
+ "directory": "mcp-server"
29
+ },
30
+ "homepage": "https://github.com/pe-menezes/fin-app/tree/main/mcp-server",
31
+ "engines": {
32
+ "node": ">=18"
33
+ },
34
+ "dependencies": {
35
+ "@modelcontextprotocol/sdk": "^1.12.0"
36
+ }
37
+ }