emceepee 0.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/LICENSE +21 -0
- package/README.md +121 -0
- package/dist/mcp-proxy.js +63 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "emceepee",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "MCP proxy server with static tools for managing dynamic backend MCP servers",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"mcp-proxy": "dist/mcp-proxy.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/mcp-proxy.js",
|
|
11
|
+
"README.md",
|
|
12
|
+
"LICENSE"
|
|
13
|
+
],
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=20.0.0"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/eastlondoner/mcp-proxy.git"
|
|
20
|
+
},
|
|
21
|
+
"author": "eastlondoner",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"keywords": [
|
|
24
|
+
"mcp",
|
|
25
|
+
"model-context-protocol",
|
|
26
|
+
"proxy",
|
|
27
|
+
"llm",
|
|
28
|
+
"tools",
|
|
29
|
+
"ai",
|
|
30
|
+
"cli"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "bun build src/server.ts --outfile=dist/mcp-proxy.js --target=node --minify",
|
|
34
|
+
"start": "node dist/mcp-proxy.js",
|
|
35
|
+
"dev": "bun run src/server.ts",
|
|
36
|
+
"lint": "eslint src/",
|
|
37
|
+
"lint:fix": "eslint src/ --fix",
|
|
38
|
+
"typecheck": "tsc --noEmit",
|
|
39
|
+
"check": "bun run typecheck && bun run lint",
|
|
40
|
+
"prepublishOnly": "bun run check && bun run build"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
44
|
+
"zod": "^3.23.8"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@eslint/js": "^9.17.0",
|
|
48
|
+
"@types/node": "^22.10.2",
|
|
49
|
+
"eslint": "^9.17.0",
|
|
50
|
+
"typescript": "^5.7.2",
|
|
51
|
+
"typescript-eslint": "^8.18.2"
|
|
52
|
+
}
|
|
53
|
+
}
|