- Home
- MCP servers
- ZeroPath
ZeroPath
- python
8
GitHub Stars
python
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"zeropathai-zeropath-mcp-server": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/ZeroPathAI/zeropath-mcp-server",
"zeropath-mcp-server"
],
"env": {
"ZEROPATH_ORG_ID": "your_org_id",
"ZEROPATH_BASE_URL": "https://zeropath.com",
"ZEROPATH_TOKEN_ID": "your_token_id",
"ZEROPATH_TOKEN_SECRET": "your_token_secret"
}
}
}
}The ZeroPath MCP Server lets you interact with ZeroPath security findings through MCP-compatible clients, translating opportunities to query and act on findings into structured, JSON responses for agents and automation tools.
How to use
You connect your MCP client to the ZeroPath MCP Server by configuring an MCP connection with the server’s runtime command. Once connected, you can list issues, archive items, create rules, and fetch statistics through the available tools. The server exposes tools via a standardized interface, and client-side input is validated before requests reach the underlying procedures. Use the client to perform routine security findings workflow, such as browsing issues, performing bulk actions, defining detection rules, and retrieving organizational statistics.
How to install
Prerequisites: you need a working Python environment and a runtime that can execute MCP server processes (for example, uvx or Python 3+. Ensure you have network access to ZeroPath endpoints.
Install the MCP server by using the recommended quick install path. You can install directly from the project repository or install from PyPI if published.
Configuration and usage notes
Prepare API credentials by generating a user-scoped or admin API key from ZeroPath Settings.
Set environment variables to point the MCP client at your ZeroPath instance and to provide authentication details. Example variables include the base URL for the ZeroPath API, a token ID, a token secret, and your organization ID.
Security and best practices
Treat API keys as secrets. Use a separate token for each environment (development, staging, production) and rotate credentials regularly. Restrict access to MCP endpoints to trusted tools and agents.
Troubleshooting tips
If you encounter validation errors, verify that your input conforms to the tool’s expected schema. When a schema features advanced JSON Schema constructs that are not supported by the client, validation may be skipped on the client side but server-side validation remains authoritative.
Examples of common tasks
List issues, filter by status, and sort by score to surface the most critical items.
Notes
The server communicates via tRPC V2 procedures and returns structured JSON responses suitable for automation and agent-based tooling.
Available tools
issues.list
Query and list issues with pagination, filtering by status, and sorting options.
issues.archive
Archive a set of issues by IDs with an optional reason.
rules.create
Create a new rule to detect security patterns in repository files.
stats.summary
Fetch a concise summary of statistics for the specified organization.