@ghostspeak/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 +331 -0
- package/dist/index.js +6073 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ghostspeak/mcp-server",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "MCP server for GhostSpeak agent discovery and claiming",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"ghostspeak-mcp": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/Ghostspeak/mcp-server-ghostspeak.git"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/Ghostspeak/mcp-server-ghostspeak#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/Ghostspeak/mcp-server-ghostspeak/issues"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md",
|
|
21
|
+
"package.json"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "bun build src/index.ts --outdir dist --target node --format esm",
|
|
25
|
+
"dev": "bun run src/index.ts",
|
|
26
|
+
"start": "node dist/index.js",
|
|
27
|
+
"type-check": "tsc --noEmit"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@modelcontextprotocol/sdk": "^0.6.1",
|
|
31
|
+
"convex": "^1.31.2",
|
|
32
|
+
"zod": "^3.22.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@types/bun": "latest",
|
|
36
|
+
"@types/node": "^20.0.0",
|
|
37
|
+
"typescript": "^5.0.0"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"mcp",
|
|
41
|
+
"model-context-protocol",
|
|
42
|
+
"ghostspeak",
|
|
43
|
+
"agent-discovery",
|
|
44
|
+
"solana",
|
|
45
|
+
"ai-agents",
|
|
46
|
+
"stdio"
|
|
47
|
+
],
|
|
48
|
+
"author": "GhostSpeak",
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"publishConfig": {
|
|
51
|
+
"access": "public"
|
|
52
|
+
}
|
|
53
|
+
}
|