flash-trade-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.
Potentially problematic release.
This version of flash-trade-mcp might be problematic. Click here for more details.
- package/README.md +185 -0
- package/dist/index.js +29499 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "flash-trade-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server for Flash Trade — perpetual futures DEX on Solana. Provides AI agents with typed tools for trading, position management, and market data.",
|
|
5
|
+
"module": "src/index.ts",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"flash-trade-mcp": "dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"dev": "bun run src/index.ts",
|
|
16
|
+
"build": "bun build src/index.ts --target=node --outdir=dist --format=esm",
|
|
17
|
+
"build:binary": "bun build src/index.ts --compile --outfile flash-trade-mcp",
|
|
18
|
+
"prepublishOnly": "bun run build",
|
|
19
|
+
"test": "vitest run",
|
|
20
|
+
"test:watch": "vitest",
|
|
21
|
+
"test:integration": "vitest run tests/integration/",
|
|
22
|
+
"typecheck": "tsc --noEmit"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/flash-trade/flash-trade-MCP.git",
|
|
27
|
+
"directory": "mcp"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"mcp",
|
|
31
|
+
"model-context-protocol",
|
|
32
|
+
"flash-trade",
|
|
33
|
+
"solana",
|
|
34
|
+
"defi",
|
|
35
|
+
"perpetual-futures",
|
|
36
|
+
"trading",
|
|
37
|
+
"ai-agent"
|
|
38
|
+
],
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"homepage": "https://github.com/flash-trade/flash-trade-MCP#readme",
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@solana/web3.js": "1",
|
|
43
|
+
"@types/bun": "latest",
|
|
44
|
+
"bs58": "^6.0.0",
|
|
45
|
+
"msw": "^2.12.13",
|
|
46
|
+
"typescript": "^5.9.3",
|
|
47
|
+
"vitest": "^4.1.0"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
51
|
+
"zod": "^4.3.6"
|
|
52
|
+
}
|
|
53
|
+
}
|