@thenextgennexus/finance-mcp-server 1.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.
- package/README.md +73 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +187 -0
- package/package.json +40 -0
- package/smithery.yaml +13 -0
- package/src/index.ts +220 -0
- package/tsconfig.json +16 -0
package/README.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# Finance MCP Server
|
|
2
|
+
|
|
3
|
+
Get stock data, screen stocks, track crypto prices, and monitor exchange rates — powered by [nexgendata](https://apify.com/nexgendata) on Apify.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
### Using npx (recommended)
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx @nexgendata/finance-mcp-server
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Install globally
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install -g @nexgendata/finance-mcp-server
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Configure with Claude Desktop
|
|
20
|
+
|
|
21
|
+
Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
|
|
22
|
+
|
|
23
|
+
```json
|
|
24
|
+
{
|
|
25
|
+
"mcpServers": {
|
|
26
|
+
"finance-mcp-server": {
|
|
27
|
+
"command": "npx",
|
|
28
|
+
"args": [
|
|
29
|
+
"-y",
|
|
30
|
+
"@nexgendata/finance-mcp-server"
|
|
31
|
+
],
|
|
32
|
+
"env": {
|
|
33
|
+
"APIFY_TOKEN": "your-apify-token-optional"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Configure with Cline
|
|
41
|
+
|
|
42
|
+
Add the same configuration to your Cline MCP settings.
|
|
43
|
+
|
|
44
|
+
## Available Tools
|
|
45
|
+
|
|
46
|
+
| Tool | Description |
|
|
47
|
+
|------|-------------|
|
|
48
|
+
| `get_stock_data` | Get stock price and financial data for a ticker |
|
|
49
|
+
| `screen_stocks` | Screen stocks by financial criteria using Finviz |
|
|
50
|
+
| `get_crypto_prices` | Get current cryptocurrency prices |
|
|
51
|
+
| `get_exchange_rates` | Get currency exchange rates |
|
|
52
|
+
| `track_crypto_portfolio` | Track a cryptocurrency portfolio |
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
## Environment Variables
|
|
56
|
+
|
|
57
|
+
| Variable | Required | Description |
|
|
58
|
+
|----------|----------|-------------|
|
|
59
|
+
| `APIFY_TOKEN` | No | Your Apify API token for authenticated access. Without it, the server uses the public endpoint (rate-limited). |
|
|
60
|
+
|
|
61
|
+
## How It Works
|
|
62
|
+
|
|
63
|
+
This MCP server acts as a local stdio bridge to the [nexgendata Apify MCP endpoint](https://nexgendata--finance-mcp-server.apify.actor/mcp). When you call a tool, it forwards the request to Apify and returns the results.
|
|
64
|
+
|
|
65
|
+
## Links
|
|
66
|
+
|
|
67
|
+
- [Apify Store](https://apify.com/nexgendata/finance-mcp-server)
|
|
68
|
+
- [GitHub Repository](https://github.com/TheNextGenNexus/ai-analytics-mcp-servers)
|
|
69
|
+
- [nexgendata Blog](https://thenextgennexus.com)
|
|
70
|
+
|
|
71
|
+
## License
|
|
72
|
+
|
|
73
|
+
MIT
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
3
|
+
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
4
|
+
import { z } from "zod";
|
|
5
|
+
const APIFY_ENDPOINT = "https://nexgendata--finance-mcp-server.apify.actor/mcp";
|
|
6
|
+
const APIFY_TOKEN = process.env.APIFY_TOKEN || "";
|
|
7
|
+
async function callApifyTool(toolName, args) {
|
|
8
|
+
const url = new URL(APIFY_ENDPOINT);
|
|
9
|
+
if (APIFY_TOKEN) {
|
|
10
|
+
url.searchParams.set("token", APIFY_TOKEN);
|
|
11
|
+
}
|
|
12
|
+
const body = {
|
|
13
|
+
jsonrpc: "2.0",
|
|
14
|
+
id: 1,
|
|
15
|
+
method: "tools/call",
|
|
16
|
+
params: {
|
|
17
|
+
name: toolName,
|
|
18
|
+
arguments: args
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
const response = await fetch(url.toString(), {
|
|
22
|
+
method: "POST",
|
|
23
|
+
headers: { "Content-Type": "application/json" },
|
|
24
|
+
body: JSON.stringify(body)
|
|
25
|
+
});
|
|
26
|
+
if (!response.ok) {
|
|
27
|
+
const errorText = await response.text();
|
|
28
|
+
throw new Error(`Apify API error (${response.status}): ${errorText}`);
|
|
29
|
+
}
|
|
30
|
+
const data = await response.json();
|
|
31
|
+
if (data.error) {
|
|
32
|
+
throw new Error(`Tool error: ${JSON.stringify(data.error)}`);
|
|
33
|
+
}
|
|
34
|
+
// Extract text content from MCP response
|
|
35
|
+
const result = data.result;
|
|
36
|
+
if (result?.content && Array.isArray(result.content)) {
|
|
37
|
+
return result.content
|
|
38
|
+
.filter((c) => c.type === "text")
|
|
39
|
+
.map((c) => c.text)
|
|
40
|
+
.join("\n");
|
|
41
|
+
}
|
|
42
|
+
return JSON.stringify(data.result, null, 2);
|
|
43
|
+
}
|
|
44
|
+
const server = new McpServer({
|
|
45
|
+
name: "finance-mcp-server",
|
|
46
|
+
version: "1.0.0"
|
|
47
|
+
});
|
|
48
|
+
server.registerTool("get_stock_data", {
|
|
49
|
+
title: "Get Stock Data",
|
|
50
|
+
description: "Get stock price and financial data",
|
|
51
|
+
inputSchema: {
|
|
52
|
+
ticker: z.string().describe('Stock ticker symbol e.g. AAPL')
|
|
53
|
+
},
|
|
54
|
+
annotations: {
|
|
55
|
+
readOnlyHint: true,
|
|
56
|
+
destructiveHint: false,
|
|
57
|
+
openWorldHint: true
|
|
58
|
+
}
|
|
59
|
+
}, async (args) => {
|
|
60
|
+
try {
|
|
61
|
+
const result = await callApifyTool("get_stock_data", args);
|
|
62
|
+
return {
|
|
63
|
+
content: [{ type: "text", text: result }]
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
catch (error) {
|
|
67
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
68
|
+
return {
|
|
69
|
+
content: [{ type: "text", text: `Error: ${message}` }],
|
|
70
|
+
isError: true
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
});
|
|
74
|
+
server.registerTool("screen_stocks", {
|
|
75
|
+
title: "Screen Stocks",
|
|
76
|
+
description: "Screen stocks by criteria",
|
|
77
|
+
inputSchema: {
|
|
78
|
+
filters: z.string().describe('Screening criteria'),
|
|
79
|
+
maxItems: z.number().default(20).describe('Maximum results')
|
|
80
|
+
},
|
|
81
|
+
annotations: {
|
|
82
|
+
readOnlyHint: true,
|
|
83
|
+
destructiveHint: false,
|
|
84
|
+
openWorldHint: true
|
|
85
|
+
}
|
|
86
|
+
}, async (args) => {
|
|
87
|
+
try {
|
|
88
|
+
const result = await callApifyTool("screen_stocks", args);
|
|
89
|
+
return {
|
|
90
|
+
content: [{ type: "text", text: result }]
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
catch (error) {
|
|
94
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
95
|
+
return {
|
|
96
|
+
content: [{ type: "text", text: `Error: ${message}` }],
|
|
97
|
+
isError: true
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
server.registerTool("get_crypto_prices", {
|
|
102
|
+
title: "Get Crypto Prices",
|
|
103
|
+
description: "Get cryptocurrency prices",
|
|
104
|
+
inputSchema: {
|
|
105
|
+
coinIds: z.array(z.string()).describe('Coin IDs e.g. bitcoin, ethereum'),
|
|
106
|
+
maxItems: z.number().default(10).describe('Maximum results')
|
|
107
|
+
},
|
|
108
|
+
annotations: {
|
|
109
|
+
readOnlyHint: true,
|
|
110
|
+
destructiveHint: false,
|
|
111
|
+
openWorldHint: true
|
|
112
|
+
}
|
|
113
|
+
}, async (args) => {
|
|
114
|
+
try {
|
|
115
|
+
const result = await callApifyTool("get_crypto_prices", args);
|
|
116
|
+
return {
|
|
117
|
+
content: [{ type: "text", text: result }]
|
|
118
|
+
};
|
|
119
|
+
}
|
|
120
|
+
catch (error) {
|
|
121
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
122
|
+
return {
|
|
123
|
+
content: [{ type: "text", text: `Error: ${message}` }],
|
|
124
|
+
isError: true
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
});
|
|
128
|
+
server.registerTool("get_exchange_rates", {
|
|
129
|
+
title: "Get Exchange Rates",
|
|
130
|
+
description: "Get currency exchange rates",
|
|
131
|
+
inputSchema: {
|
|
132
|
+
baseCurrency: z.string().default('USD').describe('Base currency code'),
|
|
133
|
+
maxItems: z.number().default(10).describe('Maximum rates')
|
|
134
|
+
},
|
|
135
|
+
annotations: {
|
|
136
|
+
readOnlyHint: true,
|
|
137
|
+
destructiveHint: false,
|
|
138
|
+
openWorldHint: true
|
|
139
|
+
}
|
|
140
|
+
}, async (args) => {
|
|
141
|
+
try {
|
|
142
|
+
const result = await callApifyTool("get_exchange_rates", args);
|
|
143
|
+
return {
|
|
144
|
+
content: [{ type: "text", text: result }]
|
|
145
|
+
};
|
|
146
|
+
}
|
|
147
|
+
catch (error) {
|
|
148
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
149
|
+
return {
|
|
150
|
+
content: [{ type: "text", text: `Error: ${message}` }],
|
|
151
|
+
isError: true
|
|
152
|
+
};
|
|
153
|
+
}
|
|
154
|
+
});
|
|
155
|
+
server.registerTool("track_crypto_portfolio", {
|
|
156
|
+
title: "Track Crypto Portfolio",
|
|
157
|
+
description: "Track crypto portfolio",
|
|
158
|
+
inputSchema: {
|
|
159
|
+
coinIds: z.array(z.string()).describe('Coin IDs to track'),
|
|
160
|
+
maxResults: z.number().default(10).describe('Maximum results')
|
|
161
|
+
},
|
|
162
|
+
annotations: {
|
|
163
|
+
readOnlyHint: true,
|
|
164
|
+
destructiveHint: false,
|
|
165
|
+
openWorldHint: true
|
|
166
|
+
}
|
|
167
|
+
}, async (args) => {
|
|
168
|
+
try {
|
|
169
|
+
const result = await callApifyTool("track_crypto_portfolio", args);
|
|
170
|
+
return {
|
|
171
|
+
content: [{ type: "text", text: result }]
|
|
172
|
+
};
|
|
173
|
+
}
|
|
174
|
+
catch (error) {
|
|
175
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
176
|
+
return {
|
|
177
|
+
content: [{ type: "text", text: `Error: ${message}` }],
|
|
178
|
+
isError: true
|
|
179
|
+
};
|
|
180
|
+
}
|
|
181
|
+
});
|
|
182
|
+
async function main() {
|
|
183
|
+
const transport = new StdioServerTransport();
|
|
184
|
+
await server.connect(transport);
|
|
185
|
+
console.error("Finance MCP Server running on stdio");
|
|
186
|
+
}
|
|
187
|
+
main().catch(console.error);
|
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@thenextgennexus/finance-mcp-server",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Get stock data, screen stocks, track crypto prices, and monitor exchange rates",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"finance-mcp-server": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsc",
|
|
11
|
+
"start": "node dist/index.js",
|
|
12
|
+
"dev": "tsx src/index.ts"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
16
|
+
"zod": "^3.22.0"
|
|
17
|
+
},
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"typescript": "^5.3.0",
|
|
20
|
+
"tsx": "^4.7.0",
|
|
21
|
+
"@types/node": "^20.11.0"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=18.0.0"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"mcp",
|
|
28
|
+
"model-context-protocol",
|
|
29
|
+
"ai",
|
|
30
|
+
"apify",
|
|
31
|
+
"nexgendata"
|
|
32
|
+
],
|
|
33
|
+
"author": "nexgendata",
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/TheNextGenNexus/ai-analytics-mcp-servers"
|
|
38
|
+
},
|
|
39
|
+
"mcpName": "io.github.thenextgennexus/finance-mcp-server"
|
|
40
|
+
}
|
package/smithery.yaml
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
startCommand:
|
|
2
|
+
type: stdio
|
|
3
|
+
configSchema:
|
|
4
|
+
type: object
|
|
5
|
+
required:
|
|
6
|
+
- apifyToken
|
|
7
|
+
properties:
|
|
8
|
+
apifyToken:
|
|
9
|
+
type: string
|
|
10
|
+
description: Your Apify API token. Get one free at https://apify.com
|
|
11
|
+
commandFunction:
|
|
12
|
+
|-
|
|
13
|
+
(config) => ({{ command: 'npx', args: ['tsx', 'src/index.ts'], env: {{ APIFY_TOKEN: config.apifyToken }} }})
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
3
|
+
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
4
|
+
import { z } from "zod";
|
|
5
|
+
|
|
6
|
+
const APIFY_ENDPOINT = "https://nexgendata--finance-mcp-server.apify.actor/mcp";
|
|
7
|
+
const APIFY_TOKEN = process.env.APIFY_TOKEN || "";
|
|
8
|
+
|
|
9
|
+
async function callApifyTool(toolName: string, args: Record<string, unknown>): Promise<string> {
|
|
10
|
+
const url = new URL(APIFY_ENDPOINT);
|
|
11
|
+
if (APIFY_TOKEN) {
|
|
12
|
+
url.searchParams.set("token", APIFY_TOKEN);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
const body = {
|
|
16
|
+
jsonrpc: "2.0",
|
|
17
|
+
id: 1,
|
|
18
|
+
method: "tools/call",
|
|
19
|
+
params: {
|
|
20
|
+
name: toolName,
|
|
21
|
+
arguments: args
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
const response = await fetch(url.toString(), {
|
|
26
|
+
method: "POST",
|
|
27
|
+
headers: { "Content-Type": "application/json" },
|
|
28
|
+
body: JSON.stringify(body)
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
if (!response.ok) {
|
|
32
|
+
const errorText = await response.text();
|
|
33
|
+
throw new Error(`Apify API error (${response.status}): ${errorText}`);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const data = await response.json();
|
|
37
|
+
|
|
38
|
+
if (data.error) {
|
|
39
|
+
throw new Error(`Tool error: ${JSON.stringify(data.error)}`);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// Extract text content from MCP response
|
|
43
|
+
const result = data.result;
|
|
44
|
+
if (result?.content && Array.isArray(result.content)) {
|
|
45
|
+
return result.content
|
|
46
|
+
.filter((c: { type: string }) => c.type === "text")
|
|
47
|
+
.map((c: { text: string }) => c.text)
|
|
48
|
+
.join("\n");
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
return JSON.stringify(data.result, null, 2);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
const server = new McpServer({
|
|
55
|
+
name: "finance-mcp-server",
|
|
56
|
+
version: "1.0.0"
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
server.registerTool(
|
|
60
|
+
"get_stock_data",
|
|
61
|
+
{
|
|
62
|
+
title: "Get Stock Data",
|
|
63
|
+
description: "Get stock price and financial data",
|
|
64
|
+
inputSchema: {
|
|
65
|
+
ticker: z.string().describe('Stock ticker symbol e.g. AAPL')
|
|
66
|
+
},
|
|
67
|
+
annotations: {
|
|
68
|
+
readOnlyHint: true,
|
|
69
|
+
destructiveHint: false,
|
|
70
|
+
openWorldHint: true
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
async (args) => {
|
|
74
|
+
try {
|
|
75
|
+
const result = await callApifyTool("get_stock_data", args);
|
|
76
|
+
return {
|
|
77
|
+
content: [{ type: "text", text: result }]
|
|
78
|
+
};
|
|
79
|
+
} catch (error) {
|
|
80
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
81
|
+
return {
|
|
82
|
+
content: [{ type: "text", text: `Error: ${message}` }],
|
|
83
|
+
isError: true
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
);
|
|
88
|
+
|
|
89
|
+
server.registerTool(
|
|
90
|
+
"screen_stocks",
|
|
91
|
+
{
|
|
92
|
+
title: "Screen Stocks",
|
|
93
|
+
description: "Screen stocks by criteria",
|
|
94
|
+
inputSchema: {
|
|
95
|
+
filters: z.string().describe('Screening criteria'),
|
|
96
|
+
maxItems: z.number().default(20).describe('Maximum results')
|
|
97
|
+
},
|
|
98
|
+
annotations: {
|
|
99
|
+
readOnlyHint: true,
|
|
100
|
+
destructiveHint: false,
|
|
101
|
+
openWorldHint: true
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
async (args) => {
|
|
105
|
+
try {
|
|
106
|
+
const result = await callApifyTool("screen_stocks", args);
|
|
107
|
+
return {
|
|
108
|
+
content: [{ type: "text", text: result }]
|
|
109
|
+
};
|
|
110
|
+
} catch (error) {
|
|
111
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
112
|
+
return {
|
|
113
|
+
content: [{ type: "text", text: `Error: ${message}` }],
|
|
114
|
+
isError: true
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
);
|
|
119
|
+
|
|
120
|
+
server.registerTool(
|
|
121
|
+
"get_crypto_prices",
|
|
122
|
+
{
|
|
123
|
+
title: "Get Crypto Prices",
|
|
124
|
+
description: "Get cryptocurrency prices",
|
|
125
|
+
inputSchema: {
|
|
126
|
+
coinIds: z.array(z.string()).describe('Coin IDs e.g. bitcoin, ethereum'),
|
|
127
|
+
maxItems: z.number().default(10).describe('Maximum results')
|
|
128
|
+
},
|
|
129
|
+
annotations: {
|
|
130
|
+
readOnlyHint: true,
|
|
131
|
+
destructiveHint: false,
|
|
132
|
+
openWorldHint: true
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
async (args) => {
|
|
136
|
+
try {
|
|
137
|
+
const result = await callApifyTool("get_crypto_prices", args);
|
|
138
|
+
return {
|
|
139
|
+
content: [{ type: "text", text: result }]
|
|
140
|
+
};
|
|
141
|
+
} catch (error) {
|
|
142
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
143
|
+
return {
|
|
144
|
+
content: [{ type: "text", text: `Error: ${message}` }],
|
|
145
|
+
isError: true
|
|
146
|
+
};
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
);
|
|
150
|
+
|
|
151
|
+
server.registerTool(
|
|
152
|
+
"get_exchange_rates",
|
|
153
|
+
{
|
|
154
|
+
title: "Get Exchange Rates",
|
|
155
|
+
description: "Get currency exchange rates",
|
|
156
|
+
inputSchema: {
|
|
157
|
+
baseCurrency: z.string().default('USD').describe('Base currency code'),
|
|
158
|
+
maxItems: z.number().default(10).describe('Maximum rates')
|
|
159
|
+
},
|
|
160
|
+
annotations: {
|
|
161
|
+
readOnlyHint: true,
|
|
162
|
+
destructiveHint: false,
|
|
163
|
+
openWorldHint: true
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
async (args) => {
|
|
167
|
+
try {
|
|
168
|
+
const result = await callApifyTool("get_exchange_rates", args);
|
|
169
|
+
return {
|
|
170
|
+
content: [{ type: "text", text: result }]
|
|
171
|
+
};
|
|
172
|
+
} catch (error) {
|
|
173
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
174
|
+
return {
|
|
175
|
+
content: [{ type: "text", text: `Error: ${message}` }],
|
|
176
|
+
isError: true
|
|
177
|
+
};
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
);
|
|
181
|
+
|
|
182
|
+
server.registerTool(
|
|
183
|
+
"track_crypto_portfolio",
|
|
184
|
+
{
|
|
185
|
+
title: "Track Crypto Portfolio",
|
|
186
|
+
description: "Track crypto portfolio",
|
|
187
|
+
inputSchema: {
|
|
188
|
+
coinIds: z.array(z.string()).describe('Coin IDs to track'),
|
|
189
|
+
maxResults: z.number().default(10).describe('Maximum results')
|
|
190
|
+
},
|
|
191
|
+
annotations: {
|
|
192
|
+
readOnlyHint: true,
|
|
193
|
+
destructiveHint: false,
|
|
194
|
+
openWorldHint: true
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
async (args) => {
|
|
198
|
+
try {
|
|
199
|
+
const result = await callApifyTool("track_crypto_portfolio", args);
|
|
200
|
+
return {
|
|
201
|
+
content: [{ type: "text", text: result }]
|
|
202
|
+
};
|
|
203
|
+
} catch (error) {
|
|
204
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
205
|
+
return {
|
|
206
|
+
content: [{ type: "text", text: `Error: ${message}` }],
|
|
207
|
+
isError: true
|
|
208
|
+
};
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
);
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
async function main() {
|
|
215
|
+
const transport = new StdioServerTransport();
|
|
216
|
+
await server.connect(transport);
|
|
217
|
+
console.error("Finance MCP Server running on stdio");
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
main().catch(console.error);
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"moduleResolution": "bundler",
|
|
6
|
+
"outDir": "./dist",
|
|
7
|
+
"rootDir": "./src",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"esModuleInterop": true,
|
|
10
|
+
"skipLibCheck": true,
|
|
11
|
+
"declaration": true
|
|
12
|
+
},
|
|
13
|
+
"include": [
|
|
14
|
+
"src/**/*"
|
|
15
|
+
]
|
|
16
|
+
}
|