agentx-mcp 0.1.0__tar.gz
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.
- agentx_mcp-0.1.0/LICENSE +21 -0
- agentx_mcp-0.1.0/PKG-INFO +58 -0
- agentx_mcp-0.1.0/README.md +34 -0
- agentx_mcp-0.1.0/agentx_mcp/__init__.py +17 -0
- agentx_mcp-0.1.0/agentx_mcp/__main__.py +6 -0
- agentx_mcp-0.1.0/agentx_mcp.egg-info/PKG-INFO +58 -0
- agentx_mcp-0.1.0/agentx_mcp.egg-info/SOURCES.txt +11 -0
- agentx_mcp-0.1.0/agentx_mcp.egg-info/dependency_links.txt +1 -0
- agentx_mcp-0.1.0/agentx_mcp.egg-info/entry_points.txt +2 -0
- agentx_mcp-0.1.0/agentx_mcp.egg-info/requires.txt +1 -0
- agentx_mcp-0.1.0/agentx_mcp.egg-info/top_level.txt +1 -0
- agentx_mcp-0.1.0/pyproject.toml +43 -0
- agentx_mcp-0.1.0/setup.cfg +4 -0
agentx_mcp-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 AgentX
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentx-mcp
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Keyless MCP security shield: wrap any MCP server so every tools/call is screened, and a blocked call comes back as coaching your agent recovers from. Launcher for agentx-security-sdk.
|
|
5
|
+
Author-email: AgentX Core Team <founders@agentx-core.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://agentx-core.com
|
|
8
|
+
Project-URL: Get Started, https://bit.ly/agentfirewall
|
|
9
|
+
Project-URL: Docs, https://agentx-core.com/docs
|
|
10
|
+
Keywords: mcp,model-context-protocol,ai-agents,agent-security,llm-security,ai-firewall,guardrails,tool-use,ai-safety,prompt-injection,autonomous-agents
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Information Technology
|
|
14
|
+
Classifier: Topic :: Security
|
|
15
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
18
|
+
Classifier: Operating System :: OS Independent
|
|
19
|
+
Requires-Python: >=3.8
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Requires-Dist: agentx-security-sdk>=0.4.8
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
|
|
25
|
+
# agentx-mcp
|
|
26
|
+
|
|
27
|
+
Wrap any MCP server so a poisoned tool call cannot wreck your system, and your agent keeps working.
|
|
28
|
+
|
|
29
|
+
`agentx-mcp` sits in front of any MCP server's stdio and screens every `tools/call` before it runs. When a call is dangerous (a destructive database write, an SSRF, a secret read), it is blocked and handed back to your agent as coaching it can act on, so the agent revises and the run finishes instead of executing the damage. No API key, no gateway, nothing leaves your machine.
|
|
30
|
+
|
|
31
|
+
## Use it
|
|
32
|
+
|
|
33
|
+
No install needed with `uvx`:
|
|
34
|
+
|
|
35
|
+
```jsonc
|
|
36
|
+
// mcp.json / claude_desktop_config.json / .cursor/mcp.json
|
|
37
|
+
{
|
|
38
|
+
"command": "uvx",
|
|
39
|
+
"args": ["agentx-mcp", "npx", "-y", "your-mcp-server", "..."]
|
|
40
|
+
}
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Or install it persistently:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
pipx install agentx-mcp # or: pip install agentx-mcp
|
|
47
|
+
agentx-mcp npx -y your-mcp-server ...
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Then keep using your MCP client normally. Every tool call is screened; a blocked call comes back as coaching your agent recovers from.
|
|
51
|
+
|
|
52
|
+
That is the keyless Shield. For the judge that catches what keywords miss, automatic retries, and human escalation on the largest calls, see Recover at https://agentx-core.com.
|
|
53
|
+
|
|
54
|
+
## What it is
|
|
55
|
+
|
|
56
|
+
A thin launcher for the proxy that ships in [`agentx-security-sdk`](https://pypi.org/project/agentx-security-sdk/). Installing `agentx-mcp` gives you the `agentx-mcp` command with no `--from` needed. MIT licensed.
|
|
57
|
+
|
|
58
|
+
Docs: https://agentx-core.com/docs
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# agentx-mcp
|
|
2
|
+
|
|
3
|
+
Wrap any MCP server so a poisoned tool call cannot wreck your system, and your agent keeps working.
|
|
4
|
+
|
|
5
|
+
`agentx-mcp` sits in front of any MCP server's stdio and screens every `tools/call` before it runs. When a call is dangerous (a destructive database write, an SSRF, a secret read), it is blocked and handed back to your agent as coaching it can act on, so the agent revises and the run finishes instead of executing the damage. No API key, no gateway, nothing leaves your machine.
|
|
6
|
+
|
|
7
|
+
## Use it
|
|
8
|
+
|
|
9
|
+
No install needed with `uvx`:
|
|
10
|
+
|
|
11
|
+
```jsonc
|
|
12
|
+
// mcp.json / claude_desktop_config.json / .cursor/mcp.json
|
|
13
|
+
{
|
|
14
|
+
"command": "uvx",
|
|
15
|
+
"args": ["agentx-mcp", "npx", "-y", "your-mcp-server", "..."]
|
|
16
|
+
}
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Or install it persistently:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pipx install agentx-mcp # or: pip install agentx-mcp
|
|
23
|
+
agentx-mcp npx -y your-mcp-server ...
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Then keep using your MCP client normally. Every tool call is screened; a blocked call comes back as coaching your agent recovers from.
|
|
27
|
+
|
|
28
|
+
That is the keyless Shield. For the judge that catches what keywords miss, automatic retries, and human escalation on the largest calls, see Recover at https://agentx-core.com.
|
|
29
|
+
|
|
30
|
+
## What it is
|
|
31
|
+
|
|
32
|
+
A thin launcher for the proxy that ships in [`agentx-security-sdk`](https://pypi.org/project/agentx-security-sdk/). Installing `agentx-mcp` gives you the `agentx-mcp` command with no `--from` needed. MIT licensed.
|
|
33
|
+
|
|
34
|
+
Docs: https://agentx-core.com/docs
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""agentx-mcp: the keyless MCP security shield, one line in your mcp.json.
|
|
2
|
+
|
|
3
|
+
Wrap any MCP server's launch command with `agentx-mcp` and every tools/call is
|
|
4
|
+
screened before it runs. A dangerous call (a destructive database write, an SSRF,
|
|
5
|
+
a secret read) is blocked and returned to your agent as coaching it can act on, so
|
|
6
|
+
the agent revises and the run survives instead of executing the damage. No API key,
|
|
7
|
+
no gateway, nothing leaves your machine.
|
|
8
|
+
|
|
9
|
+
The proxy itself lives in `agentx-security-sdk` (imported as `agentx_sdk`); this
|
|
10
|
+
package is the launcher that lets `uvx agentx-mcp ...` and `pipx run agentx-mcp ...`
|
|
11
|
+
resolve with no `--from`. Same command and behavior as the `agentx-mcp` shipped
|
|
12
|
+
inside the SDK.
|
|
13
|
+
"""
|
|
14
|
+
from agentx_sdk.mcp_proxy import main # re-export the real proxy entry point
|
|
15
|
+
|
|
16
|
+
__all__ = ["main"]
|
|
17
|
+
__version__ = "0.1.0"
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentx-mcp
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Keyless MCP security shield: wrap any MCP server so every tools/call is screened, and a blocked call comes back as coaching your agent recovers from. Launcher for agentx-security-sdk.
|
|
5
|
+
Author-email: AgentX Core Team <founders@agentx-core.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://agentx-core.com
|
|
8
|
+
Project-URL: Get Started, https://bit.ly/agentfirewall
|
|
9
|
+
Project-URL: Docs, https://agentx-core.com/docs
|
|
10
|
+
Keywords: mcp,model-context-protocol,ai-agents,agent-security,llm-security,ai-firewall,guardrails,tool-use,ai-safety,prompt-injection,autonomous-agents
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Information Technology
|
|
14
|
+
Classifier: Topic :: Security
|
|
15
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
18
|
+
Classifier: Operating System :: OS Independent
|
|
19
|
+
Requires-Python: >=3.8
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Requires-Dist: agentx-security-sdk>=0.4.8
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
|
|
25
|
+
# agentx-mcp
|
|
26
|
+
|
|
27
|
+
Wrap any MCP server so a poisoned tool call cannot wreck your system, and your agent keeps working.
|
|
28
|
+
|
|
29
|
+
`agentx-mcp` sits in front of any MCP server's stdio and screens every `tools/call` before it runs. When a call is dangerous (a destructive database write, an SSRF, a secret read), it is blocked and handed back to your agent as coaching it can act on, so the agent revises and the run finishes instead of executing the damage. No API key, no gateway, nothing leaves your machine.
|
|
30
|
+
|
|
31
|
+
## Use it
|
|
32
|
+
|
|
33
|
+
No install needed with `uvx`:
|
|
34
|
+
|
|
35
|
+
```jsonc
|
|
36
|
+
// mcp.json / claude_desktop_config.json / .cursor/mcp.json
|
|
37
|
+
{
|
|
38
|
+
"command": "uvx",
|
|
39
|
+
"args": ["agentx-mcp", "npx", "-y", "your-mcp-server", "..."]
|
|
40
|
+
}
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Or install it persistently:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
pipx install agentx-mcp # or: pip install agentx-mcp
|
|
47
|
+
agentx-mcp npx -y your-mcp-server ...
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Then keep using your MCP client normally. Every tool call is screened; a blocked call comes back as coaching your agent recovers from.
|
|
51
|
+
|
|
52
|
+
That is the keyless Shield. For the judge that catches what keywords miss, automatic retries, and human escalation on the largest calls, see Recover at https://agentx-core.com.
|
|
53
|
+
|
|
54
|
+
## What it is
|
|
55
|
+
|
|
56
|
+
A thin launcher for the proxy that ships in [`agentx-security-sdk`](https://pypi.org/project/agentx-security-sdk/). Installing `agentx-mcp` gives you the `agentx-mcp` command with no `--from` needed. MIT licensed.
|
|
57
|
+
|
|
58
|
+
Docs: https://agentx-core.com/docs
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
agentx_mcp/__init__.py
|
|
5
|
+
agentx_mcp/__main__.py
|
|
6
|
+
agentx_mcp.egg-info/PKG-INFO
|
|
7
|
+
agentx_mcp.egg-info/SOURCES.txt
|
|
8
|
+
agentx_mcp.egg-info/dependency_links.txt
|
|
9
|
+
agentx_mcp.egg-info/entry_points.txt
|
|
10
|
+
agentx_mcp.egg-info/requires.txt
|
|
11
|
+
agentx_mcp.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
agentx-security-sdk>=0.4.8
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
agentx_mcp
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=64"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "agentx-mcp"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Keyless MCP security shield: wrap any MCP server so every tools/call is screened, and a blocked call comes back as coaching your agent recovers from. Launcher for agentx-security-sdk."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "AgentX Core Team", email = "founders@agentx-core.com" }]
|
|
13
|
+
keywords = [
|
|
14
|
+
"mcp", "model-context-protocol", "ai-agents", "agent-security",
|
|
15
|
+
"llm-security", "ai-firewall", "guardrails", "tool-use", "ai-safety",
|
|
16
|
+
"prompt-injection", "autonomous-agents",
|
|
17
|
+
]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 3 - Alpha",
|
|
20
|
+
"Intended Audience :: Developers",
|
|
21
|
+
"Intended Audience :: Information Technology",
|
|
22
|
+
"Topic :: Security",
|
|
23
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
24
|
+
"Programming Language :: Python :: 3",
|
|
25
|
+
"License :: OSI Approved :: MIT License",
|
|
26
|
+
"Operating System :: OS Independent",
|
|
27
|
+
]
|
|
28
|
+
# The proxy itself lives in agentx-security-sdk (imported as agentx_sdk); this
|
|
29
|
+
# package is a thin launcher so `uvx agentx-mcp ...` / `pipx run agentx-mcp ...`
|
|
30
|
+
# resolve with no `--from`. >=0.4.8 is the version whose keyless coaching was
|
|
31
|
+
# validated end-to-end (Tier 2, 2026-07-03).
|
|
32
|
+
dependencies = ["agentx-security-sdk>=0.4.8"]
|
|
33
|
+
|
|
34
|
+
[project.urls]
|
|
35
|
+
Homepage = "https://agentx-core.com"
|
|
36
|
+
"Get Started" = "https://bit.ly/agentfirewall"
|
|
37
|
+
Docs = "https://agentx-core.com/docs"
|
|
38
|
+
|
|
39
|
+
[project.scripts]
|
|
40
|
+
agentx-mcp = "agentx_mcp:main"
|
|
41
|
+
|
|
42
|
+
[tool.setuptools]
|
|
43
|
+
packages = ["agentx_mcp"]
|