mcp-controller 0.2.0 → 0.3.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 +3 -0
- package/mcp-controller +0 -0
- package/package.json +6 -14
package/README.md
CHANGED
|
@@ -27,6 +27,9 @@ bun run build
|
|
|
27
27
|
# Proxy to a local MCP server
|
|
28
28
|
./mcp-controller bun run my-server.ts
|
|
29
29
|
|
|
30
|
+
# Proxy to an npm-distributed MCP server
|
|
31
|
+
./mcp-controller @modelcontextprotocol/server-sequential-thinking
|
|
32
|
+
|
|
30
33
|
# Proxy to a Python MCP server
|
|
31
34
|
./mcp-controller python -m my_mcp_server
|
|
32
35
|
|
package/mcp-controller
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-controller",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "MCP server proxy that
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "MCP server proxy that enables controlling availability of tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"mcp-controller": "mcp-controller"
|
|
@@ -24,12 +24,9 @@
|
|
|
24
24
|
"test:watch": "bun test tests/ --watch",
|
|
25
25
|
"prepublish": "bun test && bun run build"
|
|
26
26
|
},
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
29
|
-
"zod": "^3.23.8"
|
|
30
|
-
},
|
|
31
27
|
"devDependencies": {
|
|
32
28
|
"@eslint/js": "^9.15.0",
|
|
29
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
33
30
|
"@types/node": "^22.9.0",
|
|
34
31
|
"bun-types": "^1.1.34",
|
|
35
32
|
"eslint": "^9.15.0",
|
|
@@ -37,13 +34,8 @@
|
|
|
37
34
|
"globals": "^15.12.0",
|
|
38
35
|
"prettier": "^3.3.3",
|
|
39
36
|
"typescript": "^5.6.3",
|
|
40
|
-
"typescript-eslint": "^8.14.0"
|
|
41
|
-
|
|
42
|
-
"peerDependencies": {
|
|
43
|
-
"typescript": "^5.0.0"
|
|
44
|
-
},
|
|
45
|
-
"engines": {
|
|
46
|
-
"node": ">=18.0.0"
|
|
37
|
+
"typescript-eslint": "^8.14.0",
|
|
38
|
+
"zod": "^3.23.8"
|
|
47
39
|
},
|
|
48
40
|
"keywords": [
|
|
49
41
|
"mcp",
|
|
@@ -52,6 +44,6 @@
|
|
|
52
44
|
"json-rpc",
|
|
53
45
|
"cli"
|
|
54
46
|
],
|
|
55
|
-
"author": "",
|
|
47
|
+
"author": "@eli0shin",
|
|
56
48
|
"license": "MIT"
|
|
57
49
|
}
|