@ackuity/inline-proxy 0.7.0 → 0.7.2
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 +16 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -23,6 +23,20 @@ The proxy sits between any MCP client and MCP server. When it sees a `tools/call
|
|
|
23
23
|
## Installation
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
+
npx @ackuity/inline-proxy
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Or install globally:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm install -g @ackuity/inline-proxy
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
For local development:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
git clone https://github.com/Ackuity/ackuity-mcp-proxy.git
|
|
39
|
+
cd ackuity-mcp-proxy
|
|
26
40
|
npm install
|
|
27
41
|
npm run build
|
|
28
42
|
```
|
|
@@ -83,7 +97,7 @@ Replace `<ACKUITY-DIST-REF>` in the examples below depending on how you installe
|
|
|
83
97
|
|---|---|---|
|
|
84
98
|
| Cloned and built locally | `node` | `path/to/ackuity-inline-proxy/dist/main.js` |
|
|
85
99
|
| npx from GitHub | `npx` | `github:Ackuity/ackuity-mcp-proxy` |
|
|
86
|
-
| Published to npm | `npx` |
|
|
100
|
+
| Published to npm | `npx` | `@ackuity/inline-proxy` |
|
|
87
101
|
|
|
88
102
|
**TypeScript / JavaScript**
|
|
89
103
|
|
|
@@ -165,7 +179,7 @@ services:
|
|
|
165
179
|
ackuity-proxy:
|
|
166
180
|
image: node:22-slim
|
|
167
181
|
working_dir: /app
|
|
168
|
-
command: npx
|
|
182
|
+
command: npx @ackuity/inline-proxy --mode server --target http://mcp-server:5000/mcp --port 7500
|
|
169
183
|
ports:
|
|
170
184
|
- "7500:7500"
|
|
171
185
|
environment:
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ackuity/inline-proxy",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/main.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"
|
|
8
|
+
"inline-proxy": "dist/main.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "tsc && npx biome check src/",
|