agent-mcp-gateway 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl

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.

Potentially problematic release.


This version of agent-mcp-gateway might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent-mcp-gateway
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: An MCP gateway that aggregates your existing MCP servers and lets you define which servers and individual tools each agent or subagent can access. Solves Claude Code's MCP context window waste where all tool definitions load upfront instead of being discovered when actually needed.
5
5
  Project-URL: Homepage, https://github.com/roddutra/agent-mcp-gateway
6
6
  Project-URL: Documentation, https://github.com/roddutra/agent-mcp-gateway#readme
@@ -37,7 +37,10 @@ A [Model Context Protocol (MCP)](https://modelcontextprotocol.io) gateway that a
37
37
  ## Table of Contents
38
38
 
39
39
  - [Overview](#overview)
40
+ - [Installation](#installation)
40
41
  - [Quick Start](#quick-start)
42
+ - [Command-Line Options](#command-line-options)
43
+ - [Configuration File Discovery](#configuration-file-discovery)
41
44
  - [Configuration](#configuration)
42
45
  - [Usage](#usage)
43
46
  - [Gateway Tools](#gateway-tools)
@@ -74,11 +77,11 @@ The Agent MCP Gateway acts as a single MCP server that proxies to multiple downs
74
77
 
75
78
  ### How It Works
76
79
 
77
- ![Agent MCP Gateway Architecture](docs/diagram-snippet.png)
80
+ ![Agent MCP Gateway Architecture](https://raw.githubusercontent.com/roddutra/agent-mcp-gateway/main/docs/diagram-snippet.png)
78
81
 
79
82
  The gateway sits between agents and downstream MCP servers, exposing only 3 lightweight tools. When an agent needs specific functionality, it discovers available servers and tools through the gateway, which filters visibility based on policy rules - agents only see servers and tools they have access to. This reduces each agent's context window to only relevant tools, while the gateway handles proxying authorized requests to downstream servers.
80
83
 
81
- **[View detailed diagram with examples →](docs/diagram-full.png)** (includes downstream servers, tools, and gateway rules examples)
84
+ **[View detailed diagram with examples →](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/diagram-full.png)** (includes downstream servers, tools, and gateway rules examples)
82
85
 
83
86
  ### Key Features
84
87
 
@@ -95,48 +98,138 @@ The gateway sits between agents and downstream MCP servers, exposing only 3 ligh
95
98
  - ✅ **Thread-Safe Operations** - Safe concurrent access during reloads
96
99
  - ✅ **Diagnostic Tools** - Health monitoring via `get_gateway_status` (debug mode only)
97
100
 
98
- ## Quick Start
101
+ ## Installation
102
+
103
+ ### For End Users (Recommended)
104
+
105
+ Install via `uvx` for on-demand usage without persistent installation:
106
+
107
+ ```bash
108
+ # Run directly without installing
109
+ uvx agent-mcp-gateway --help
110
+
111
+ # First-time setup - create config directory
112
+ uvx agent-mcp-gateway --init
113
+
114
+ # Run the gateway (uses configs from ~/.config/agent-mcp-gateway/)
115
+ GATEWAY_MCP_CONFIG=~/.config/agent-mcp-gateway/mcp.json \
116
+ GATEWAY_RULES=~/.config/agent-mcp-gateway/mcp-gateway-rules.json \
117
+ uvx agent-mcp-gateway
118
+ ```
119
+
120
+ Or install persistently with `uv tool`:
121
+
122
+ ```bash
123
+ # Install once
124
+ uv tool install agent-mcp-gateway
125
+
126
+ # Run anytime
127
+ agent-mcp-gateway --help
99
128
 
100
- ### Prerequisites
129
+ # Update to latest version
130
+ uv tool upgrade agent-mcp-gateway
131
+ ```
101
132
 
102
- - Python 3.12+
103
- - [uv](https://docs.astral.sh/uv/) (Python package manager)
133
+ ### For Developers
104
134
 
105
- ### 1. Install Dependencies
135
+ Clone and install in development mode:
106
136
 
107
137
  ```bash
108
- # Clone the repository
109
- git clone <repository-url>
138
+ # Clone repository
139
+ git clone https://github.com/roddutra/agent-mcp-gateway.git
110
140
  cd agent-mcp-gateway
111
141
 
112
- # Install dependencies with uv
142
+ # Install dependencies
113
143
  uv sync
144
+
145
+ # Run locally
146
+ uv run python main.py --help
114
147
  ```
115
148
 
116
- This installs:
117
- - `fastmcp >= 2.13.0.1` - MCP server framework
118
- - `pytest`, `pytest-cov`, `pytest-asyncio` - Testing tools (dev)
149
+ ## Quick Start
150
+
151
+ **Note:** This guide assumes you've installed the gateway. See [Installation](#installation) above.
152
+
153
+ ### 1. Set Up Configuration Files
154
+
155
+ The gateway requires two configuration files to operate. Choose your setup method:
119
156
 
120
- ### 2. Set Up Configuration Files
157
+ **Method A: For PyPI Installation (uvx/uv tool)**
121
158
 
122
159
  ```bash
160
+ # Initialize config directory and create template files
161
+ uvx agent-mcp-gateway --init
162
+ # or
163
+ agent-mcp-gateway --init # if installed with uv tool
164
+
165
+ # Edit configs with your servers and rules
166
+ nano ~/.config/agent-mcp-gateway/mcp.json
167
+ nano ~/.config/agent-mcp-gateway/mcp-gateway-rules.json
168
+ ```
169
+
170
+ **Method B: For Local Development**
171
+
172
+ ```bash
173
+ # Copy example files to your project directory
123
174
  cp config/.mcp.json.example .mcp.json
124
175
  cp config/.mcp-gateway-rules.json.example .mcp-gateway-rules.json
125
176
 
126
- # Edit configs with your servers and rules...
127
- # Note: .mcp.json is the standard MCP config format used by Claude Code
177
+ # Edit configs with your servers and rules
178
+ # Note: mcp.json is the standard MCP config format used by Claude Code
128
179
  ```
129
180
 
130
- ### 3. Add Gateway to Your MCP Client
181
+ See [Configuration File Discovery](#configuration-file-discovery) below for details on where the gateway searches for configuration files.
182
+
183
+ ### 2. Add Gateway to Your MCP Client
184
+
185
+ **For PyPI Installation (uvx):**
131
186
 
132
- **Claude Code CLI:**
133
187
  ```bash
134
- claude mcp add agent-mcp-gateway \
135
- uv run --directory /path/to/agent-mcp-gateway python main.py
188
+ # Claude Code CLI
189
+ claude mcp add agent-mcp-gateway uvx agent-mcp-gateway
190
+
191
+ # Or manual configuration (Claude Desktop, etc.)
192
+ # Add to your MCP client config:
193
+ {
194
+ "mcpServers": {
195
+ "agent-mcp-gateway": {
196
+ "command": "uvx",
197
+ "args": ["agent-mcp-gateway"],
198
+ "env": {
199
+ "GATEWAY_MCP_CONFIG": "~/.config/agent-mcp-gateway/mcp.json",
200
+ "GATEWAY_RULES": "~/.config/agent-mcp-gateway/mcp-gateway-rules.json",
201
+ "GATEWAY_DEFAULT_AGENT": "developer"
202
+ }
203
+ }
204
+ }
205
+ }
136
206
  ```
137
207
 
138
- **Manual MCP Client Configuration** (Claude Desktop, etc.):
208
+ **For PyPI Installation (uv tool):**
209
+
139
210
  ```json
211
+ {
212
+ "mcpServers": {
213
+ "agent-mcp-gateway": {
214
+ "command": "agent-mcp-gateway",
215
+ "env": {
216
+ "GATEWAY_MCP_CONFIG": "~/.config/agent-mcp-gateway/mcp.json",
217
+ "GATEWAY_RULES": "~/.config/agent-mcp-gateway/mcp-gateway-rules.json",
218
+ "GATEWAY_DEFAULT_AGENT": "developer"
219
+ }
220
+ }
221
+ }
222
+ }
223
+ ```
224
+
225
+ **For Local Development:**
226
+
227
+ ```bash
228
+ # Claude Code CLI
229
+ claude mcp add agent-mcp-gateway \
230
+ uv run --directory /path/to/agent-mcp-gateway python main.py
231
+
232
+ # Or manual configuration
140
233
  {
141
234
  "mcpServers": {
142
235
  "agent-mcp-gateway": {
@@ -150,9 +243,9 @@ claude mcp add agent-mcp-gateway \
150
243
  }
151
244
  ```
152
245
 
153
- Replace `/path/to/agent-mcp-gateway` with the actual path to your gateway installation.
246
+ Replace `/path/to/agent-mcp-gateway` with the actual path to your gateway clone.
154
247
 
155
- **Note:** The `--directory` flag tells `uv run` to change to the project directory before running, ensuring it finds `pyproject.toml` and the gateway configuration files.
248
+ **Note:** For local development, the `--directory` flag tells `uv run` to change to the project directory before running, ensuring it finds `pyproject.toml` and the gateway configuration files.
156
249
 
157
250
  **Verify Gateway Connection:**
158
251
 
@@ -177,19 +270,7 @@ Gateway initialized successfully
177
270
  - 3 gateway tools available
178
271
  ```
179
272
 
180
- ### 4. Development Usage (Optional)
181
-
182
- For local development and testing:
183
-
184
- ```bash
185
- # Run gateway directly
186
- uv run python main.py
187
-
188
- # Test with MCP Inspector
189
- npx @modelcontextprotocol/inspector uv run python main.py
190
- ```
191
-
192
- ### 5. Configure Your Agents
273
+ ### 3. Configure Your Agents
193
274
 
194
275
  The gateway's tool descriptions are self-documenting, but for proper access control you should configure how your agents identify themselves.
195
276
 
@@ -252,7 +333,49 @@ When you need to use tools from downstream MCP servers:
252
333
 
253
334
  Replace `YOUR_AGENT_NAME` with your agent's identifier (e.g., "researcher", "backend", "admin").
254
335
 
255
- **Examples:** See [`.claude/agents/researcher.md`](.claude/agents/researcher.md) and [`.claude/agents/mcp-developer.md`](.claude/agents/mcp-developer.md) for complete configuration examples.
336
+ **Examples:** See [`.claude/agents/researcher.md`](https://github.com/roddutra/agent-mcp-gateway/blob/main/.claude/agents/researcher.md) and [`.claude/agents/mcp-developer.md`](https://github.com/roddutra/agent-mcp-gateway/blob/main/.claude/agents/mcp-developer.md) for complete configuration examples.
337
+
338
+ ## Command-Line Options
339
+
340
+ ```bash
341
+ # Show version
342
+ agent-mcp-gateway --version
343
+
344
+ # Initialize config directory (first-time setup)
345
+ agent-mcp-gateway --init
346
+
347
+ # Enable debug mode (exposes get_gateway_status diagnostic tool)
348
+ agent-mcp-gateway --debug
349
+
350
+ # Show help
351
+ agent-mcp-gateway --help
352
+ ```
353
+
354
+ **For local development:**
355
+ ```bash
356
+ uv run python main.py --version
357
+ uv run python main.py --init
358
+ uv run python main.py --debug
359
+ uv run python main.py --help
360
+ ```
361
+
362
+ ## Configuration File Discovery
363
+
364
+ The gateway searches for configuration files in this order:
365
+
366
+ ### MCP Server Config (mcp.json)
367
+ 1. `GATEWAY_MCP_CONFIG` environment variable (if set)
368
+ 2. `.mcp.json` in current directory
369
+ 3. `~/.config/agent-mcp-gateway/mcp.json` (home directory)
370
+ 4. `./config/.mcp.json` (fallback)
371
+
372
+ ### Gateway Rules (mcp-gateway-rules.json)
373
+ 1. `GATEWAY_RULES` environment variable (if set)
374
+ 2. `.mcp-gateway-rules.json` in current directory
375
+ 3. `~/.config/agent-mcp-gateway/mcp-gateway-rules.json` (home directory)
376
+ 4. `./config/.mcp-gateway-rules.json` (fallback)
377
+
378
+ **Tip:** Use `agent-mcp-gateway --init` to create the home directory configs on first run.
256
379
 
257
380
  ## Configuration
258
381
 
@@ -260,9 +383,9 @@ The gateway requires two configuration files:
260
383
 
261
384
  ### 1. MCP Servers Configuration
262
385
 
263
- **File:** `.mcp.json` (or `config/.mcp.json`)
386
+ **File:** `mcp.json` (searched in [multiple locations](#configuration-file-discovery))
264
387
 
265
- Defines the downstream MCP servers the gateway will proxy to. Uses the standard `.mcp.json` format compatible with Claude Code and other coding agents:
388
+ Defines the downstream MCP servers the gateway will proxy to. Uses the standard MCP config format compatible with Claude Code and other coding agents:
266
389
 
267
390
  ```json
268
391
  {
@@ -329,7 +452,7 @@ If you use `${VAR_NAME}` syntax in `.mcp.json`, note that macOS GUI applications
329
452
 
330
453
  ### 2. Gateway Rules Configuration
331
454
 
332
- **File:** `.mcp-gateway-rules.json` (or `config/.mcp-gateway-rules.json`)
455
+ **File:** `mcp-gateway-rules.json` (searched in [multiple locations](#configuration-file-discovery))
333
456
 
334
457
  Defines per-agent access policies using deny-before-allow precedence:
335
458
 
@@ -420,7 +543,7 @@ uv run python main.py
420
543
 
421
544
  ### 3. OAuth Support for Downstream Servers
422
545
 
423
- OAuth-protected downstream servers (Notion, GitHub) are automatically supported via auto-detection when servers return HTTP 401. The gateway uses FastMCP's OAuth support to handle authentication flows transparently - browser opens once for initial authentication, then tokens are cached for future use. See [OAuth User Guide](docs/oauth-user-guide.md) for detailed setup and troubleshooting.
546
+ OAuth-protected downstream servers (Notion, GitHub) are automatically supported via auto-detection when servers return HTTP 401. The gateway uses FastMCP's OAuth support to handle authentication flows transparently - browser opens once for initial authentication, then tokens are cached for future use. See [OAuth User Guide](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/oauth-user-guide.md) for detailed setup and troubleshooting.
424
547
 
425
548
  ### 4. Environment Variables Reference
426
549
 
@@ -856,7 +979,7 @@ The `deny_on_missing_agent` setting controls this behavior:
856
979
 
857
980
  **Debug Mode:** The `get_gateway_status` tool exposes gateway internals and is only available when `GATEWAY_DEBUG=true`. Disable in production environments.
858
981
 
859
- **For comprehensive security guidance:** See [Security Guide](docs/security-guide.md) for detailed information on rules file security, debug mode considerations, agent impersonation risks, and production best practices.
982
+ **For comprehensive security guidance:** See [Security Guide](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/security-guide.md) for detailed information on rules file security, debug mode considerations, agent impersonation risks, and production best practices.
860
983
 
861
984
  ## Troubleshooting
862
985
 
@@ -896,7 +1019,7 @@ The `deny_on_missing_agent` setting controls this behavior:
896
1019
 
897
1020
  **Symptom:** Browser doesn't open or OAuth flow fails
898
1021
 
899
- See detailed troubleshooting in [OAuth User Guide](docs/oauth-user-guide.md).
1022
+ See detailed troubleshooting in [OAuth User Guide](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/oauth-user-guide.md).
900
1023
 
901
1024
  Quick fixes:
902
1025
  - **Clear token cache:** `rm -rf ~/.fastmcp/oauth-mcp-client-cache/`
@@ -913,7 +1036,7 @@ Quick fixes:
913
1036
  - **Manual reload:** Send SIGHUP signal or restart gateway
914
1037
  - **Debug mode:** Use `get_gateway_status` to check last reload timestamps
915
1038
 
916
- **For additional help:** See [Security Guide](docs/security-guide.md), [OAuth User Guide](docs/oauth-user-guide.md), or open a GitHub issue.
1039
+ **For additional help:** See [Security Guide](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/security-guide.md), [OAuth User Guide](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/oauth-user-guide.md), or open a GitHub issue.
917
1040
 
918
1041
  ## Testing
919
1042
 
@@ -1075,41 +1198,41 @@ open htmlcov/index.html
1075
1198
 
1076
1199
  ```
1077
1200
  ┌─────────────────────────────────────────────────────────┐
1078
- │ Agent / Client
1201
+ │ Agent / Client
1079
1202
  └─────────────────────┬───────────────────────────────────┘
1080
1203
 
1081
1204
 
1082
1205
  ┌─────────────────────────────────────────────────────────┐
1083
- │ Agent MCP Gateway
1206
+ │ Agent MCP Gateway
1084
1207
  │ ┌───────────────────────────────────────────────────┐ │
1085
- │ │ Gateway Tools (3 tools, ~400 tokens) │ │
1208
+ │ │ Gateway Tools (3 tools, ~400 tokens) │ │
1086
1209
  │ │ • list_servers │ │
1087
1210
  │ │ • get_server_tools │ │
1088
1211
  │ │ • execute_tool │ │
1089
1212
  │ └───────────────────────────────────────────────────┘ │
1090
- │ │
1213
+ │ │
1091
1214
  │ ┌─────────────────────────────────────────────────┐ │
1092
- │ │ AgentAccessControl Middleware │ │
1093
- │ │ • Extract agent_id │ │
1094
- │ │ • Validate permissions │ │
1215
+ │ │ AgentAccessControl Middleware │ │
1216
+ │ │ • Extract agent_id │ │
1217
+ │ │ • Validate permissions │ │
1095
1218
  │ └─────────────────────────────────────────────────┘ │
1096
- │ │
1219
+ │ │
1097
1220
  │ ┌─────────────────────────────────────────────────┐ │
1098
- │ │ PolicyEngine │ │
1221
+ │ │ PolicyEngine │ │
1099
1222
  │ │ • Deny-before-allow precedence │ │
1100
1223
  │ │ • Wildcard matching │ │
1101
1224
  │ └─────────────────────────────────────────────────┘ │
1102
- │ │
1225
+ │ │
1103
1226
  │ ┌─────────────────────────────────────────────────┐ │
1104
- │ │ ProxyManager │ │
1105
- │ │ • Session isolation │ │
1106
- │ │ • Connection pooling │ │
1227
+ │ │ ProxyManager │ │
1228
+ │ │ • Session isolation │ │
1229
+ │ │ • Connection pooling │ │
1107
1230
  │ └─────────────────────────────────────────────────┘ │
1108
- │ │
1231
+ │ │
1109
1232
  │ ┌─────────────────────────────────────────────────┐ │
1110
- │ │ AuditLogger & MetricsCollector │ │
1233
+ │ │ AuditLogger & MetricsCollector │ │
1111
1234
  │ └─────────────────────────────────────────────────┘ │
1112
- └──────────────────────┬───────────────────────────────────┘
1235
+ └──────────────────────┬──────────────────────────────────┘
1113
1236
 
1114
1237
  ┌─────────────┼─────────────┐
1115
1238
  ▼ ▼ ▼
@@ -1192,19 +1315,19 @@ docker run -v ./config:/config agent-mcp-gateway
1192
1315
 
1193
1316
  ## Documentation
1194
1317
 
1195
- - [Product Requirements Document](docs/specs/PRD.md)
1196
- - [M0: Foundation Spec](docs/specs/m0-foundation.md)
1197
- - [M0: Success Report](docs/milestones/m0-success-report.md)
1198
- - [M1: Core Spec](docs/specs/m1-core.md)
1199
- - [M1: Success Report](docs/milestones/m1-success-report.md)
1200
- - [FastMCP Implementation Guide](docs/fastmcp-implementation-guide.md)
1201
- - [Claude Code Subagent Limitations](docs/claude-code-subagent-mcp-limitations.md)
1318
+ - [Product Requirements Document](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/specs/PRD.md)
1319
+ - [M0: Foundation Spec](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/specs/m0-foundation.md)
1320
+ - [M0: Success Report](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/milestones/m0-success-report.md)
1321
+ - [M1: Core Spec](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/specs/m1-core.md)
1322
+ - [M1: Success Report](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/milestones/m1-success-report.md)
1323
+ - [FastMCP Implementation Guide](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/fastmcp-implementation-guide.md)
1324
+ - [Claude Code Subagent Limitations](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/claude-code-subagent-mcp-limitations.md)
1202
1325
 
1203
1326
  ## Contributing
1204
1327
 
1205
1328
  Contributions welcome! Please:
1206
1329
 
1207
- 1. Read the [PRD](docs/specs/PRD.md) and relevant milestone specs
1330
+ 1. Read the [PRD](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/specs/PRD.md) and relevant milestone specs
1208
1331
  2. Follow the existing code style and patterns
1209
1332
  3. Write tests for all new functionality
1210
1333
  4. Ensure all tests pass: `uv run pytest`
@@ -1213,13 +1336,13 @@ Contributions welcome! Please:
1213
1336
 
1214
1337
  ## License
1215
1338
 
1216
- This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
1339
+ This project is licensed under the MIT License - see the [LICENSE](https://github.com/roddutra/agent-mcp-gateway/blob/main/LICENSE) file for details.
1217
1340
 
1218
1341
  ## Support
1219
1342
 
1220
1343
  For issues and questions:
1221
- - GitHub Issues: [Create an issue](link-to-issues)
1222
- - Documentation: [docs/specs/](docs/specs/)
1344
+ - GitHub Issues: [Create an issue](https://github.com/roddutra/agent-mcp-gateway/issues)
1345
+ - Documentation: [docs/](https://github.com/roddutra/agent-mcp-gateway/blob/main/docs/)
1223
1346
  - MCP Specification: https://modelcontextprotocol.io
1224
1347
 
1225
1348
  ## Acknowledgments
@@ -11,8 +11,8 @@ src/policy.py,sha256=aJGPWOBQoQlR_hAodY6nGXiqq8k2m0tO8Ped0VF7d7c,19051
11
11
  src/proxy.py,sha256=eIZuHBJoZRmnm4lcXId3xIvxhl5Z1drmGHBEu88KvMg,24912
12
12
  src/config/.mcp-gateway-rules.json.example,sha256=t53srRy_JPHojDonjhVtkB_WhLTg_oTLqxLq5i6m_ww,855
13
13
  src/config/.mcp.json.example,sha256=_Gy7bflSOw15A2LfXpprSf29gGcve4zjDka-vuPVN2c,842
14
- agent_mcp_gateway-0.1.0.dist-info/METADATA,sha256=6eGMIReCnv46cuNGnonUZ4P9mycW0u6bDMmeXiHg1fk,42547
15
- agent_mcp_gateway-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
- agent_mcp_gateway-0.1.0.dist-info/entry_points.txt,sha256=Rb9I44QKFEI6-38dCb1sPwSAzQlAzUBZKDQqjb-FHTI,52
17
- agent_mcp_gateway-0.1.0.dist-info/licenses/LICENSE,sha256=XPIqCRndYgq7mXJ2NlfnvN0IoqQGXpK2gnHIqyvuPws,1078
18
- agent_mcp_gateway-0.1.0.dist-info/RECORD,,
14
+ agent_mcp_gateway-0.1.1.dist-info/METADATA,sha256=ZqueQoFLB2Y2KaJ3zc9zvIU2Jc08GH14xjpyssVBrTg,46962
15
+ agent_mcp_gateway-0.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
+ agent_mcp_gateway-0.1.1.dist-info/entry_points.txt,sha256=Rb9I44QKFEI6-38dCb1sPwSAzQlAzUBZKDQqjb-FHTI,52
17
+ agent_mcp_gateway-0.1.1.dist-info/licenses/LICENSE,sha256=XPIqCRndYgq7mXJ2NlfnvN0IoqQGXpK2gnHIqyvuPws,1078
18
+ agent_mcp_gateway-0.1.1.dist-info/RECORD,,