emceepee 0.2.0 → 0.2.1
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 +8 -8
- package/dist/emceepee-stdio.js +56 -0
- package/dist/emceepee.js +285 -0
- package/package.json +13 -6
- package/dist/mcp-proxy.js +0 -63
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# emceepee
|
|
2
2
|
|
|
3
3
|
An MCP (Model Context Protocol) proxy server that provides a static tool interface for dynamically managing and interacting with multiple backend MCP servers.
|
|
4
4
|
|
|
@@ -8,7 +8,7 @@ Claude's tool schema is injected at conversation start and doesn't update mid-co
|
|
|
8
8
|
|
|
9
9
|
## Solution
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
emceepee provides a **static set of meta-tools** that allow Claude to:
|
|
12
12
|
|
|
13
13
|
- Dynamically add/remove backend MCP servers at runtime
|
|
14
14
|
- Discover tools, resources, and prompts from any connected backend
|
|
@@ -18,9 +18,9 @@ MCP Proxy provides a **static set of meta-tools** that allow Claude to:
|
|
|
18
18
|
## Installation
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
npm install
|
|
21
|
+
npm install emceepee
|
|
22
22
|
# or
|
|
23
|
-
bun add
|
|
23
|
+
bun add emceepee
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
## Usage
|
|
@@ -29,13 +29,13 @@ bun add mcp-proxy
|
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
31
|
# Default port 8080
|
|
32
|
-
npx
|
|
32
|
+
npx emceepee
|
|
33
33
|
|
|
34
34
|
# Custom port
|
|
35
|
-
PORT=9000 npx
|
|
35
|
+
PORT=9000 npx emceepee
|
|
36
36
|
|
|
37
37
|
# With initial backend servers
|
|
38
|
-
npx
|
|
38
|
+
npx emceepee --config ./servers.json
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
### Configuration File
|
|
@@ -85,7 +85,7 @@ execute_tool("execute_tool", {
|
|
|
85
85
|
|
|
86
86
|
```
|
|
87
87
|
┌─────────┐ ┌───────────┐ ┌─────────────────┐
|
|
88
|
-
│ Claude │────▶│
|
|
88
|
+
│ Claude │────▶│ emceepee │────▶│ Backend MCP │
|
|
89
89
|
│ │ │ │ │ Server 1 │
|
|
90
90
|
│ │ │ Static │ └─────────────────┘
|
|
91
91
|
│ │◀────│ Tools │────▶┌─────────────────┐
|