@solongate/proxy 0.1.0 → 0.1.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 +9 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,14 +3,16 @@
|
|
|
3
3
|
**MCP Security Proxy** — Protect any MCP server with security policies, input validation, rate limiting, and audit logging. Zero code changes required.
|
|
4
4
|
|
|
5
5
|
```
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
MCP Client ──(stdio)──> SolonGate Proxy ──(stdio)──> MCP Server
|
|
7
|
+
│
|
|
8
|
+
[rate limit]
|
|
9
|
+
[input guard]
|
|
10
|
+
[policy eval]
|
|
11
|
+
[audit log]
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
+
**Works with every MCP client:** Claude Code, Claude Desktop, Cursor, Windsurf, Cline, Zed, and any application that supports the Model Context Protocol over stdio.
|
|
15
|
+
|
|
14
16
|
## Quick Start
|
|
15
17
|
|
|
16
18
|
### Automatic Setup
|
|
@@ -21,7 +23,7 @@ Run this in your project directory (where your `.mcp.json` lives):
|
|
|
21
23
|
npx @solongate/proxy init --all
|
|
22
24
|
```
|
|
23
25
|
|
|
24
|
-
Restart
|
|
26
|
+
Restart your MCP client. Done.
|
|
25
27
|
|
|
26
28
|
### Manual Setup
|
|
27
29
|
|
package/package.json
CHANGED