finmap-mcp 3.0.0 → 3.2.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/dist/stdio-server.js +1 -1
- package/package.json +8 -8
package/dist/stdio-server.js
CHANGED
|
@@ -4,7 +4,7 @@ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
|
4
4
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
5
5
|
const server = new McpServer({
|
|
6
6
|
name: "finmap-mcp",
|
|
7
|
-
version: "3.
|
|
7
|
+
version: "3.2.0",
|
|
8
8
|
});
|
|
9
9
|
registerFinmapTools(server);
|
|
10
10
|
const transport = new StdioServerTransport();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "finmap-mcp",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "MCP server providing financial market data from finmap.org",
|
|
5
5
|
"main": "./dist/stdio-server.js",
|
|
6
6
|
"type": "module",
|
|
@@ -58,30 +58,30 @@
|
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"clean": "rimraf dist",
|
|
61
|
+
"cf-typegen": "wrangler types",
|
|
61
62
|
"build": "npm run clean && npm run build:stdio && npm run build:worker",
|
|
62
63
|
"build:stdio": "npm run clean && tsc --project tsconfig.stdio.json",
|
|
63
|
-
"build:worker": "wrangler build",
|
|
64
|
+
"build:worker": "npm run cf-typegen && wrangler build",
|
|
64
65
|
"dev:stdio": "tsx src/stdio-server.ts",
|
|
65
66
|
"dev:worker": "wrangler dev",
|
|
66
67
|
"deploy": "wrangler deploy",
|
|
67
68
|
"format": "biome format --write",
|
|
68
69
|
"lint:fix": "biome lint --fix",
|
|
69
70
|
"start": "wrangler dev",
|
|
70
|
-
"cf-typegen": "wrangler types",
|
|
71
71
|
"type-check": "tsc --noEmit",
|
|
72
72
|
"prepublishOnly": "npm run build:stdio",
|
|
73
73
|
"package": "npm run build:stdio && npm pack --pack-destination dist"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"agents": "^0.
|
|
76
|
+
"agents": "^0.11.0",
|
|
77
77
|
"zod": "^4.3.6"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@biomejs/biome": "^2.4.
|
|
81
|
-
"@types/node": "^25.
|
|
80
|
+
"@biomejs/biome": "^2.4.12",
|
|
81
|
+
"@types/node": "^25.6.0",
|
|
82
82
|
"rimraf": "^6.1.3",
|
|
83
83
|
"tsx": "^4.21.0",
|
|
84
|
-
"typescript": "
|
|
85
|
-
"wrangler": "^4.
|
|
84
|
+
"typescript": "6.0.2",
|
|
85
|
+
"wrangler": "^4.83.0"
|
|
86
86
|
}
|
|
87
87
|
}
|