A Model Context Protocol server for Phylax. Lets AI assistants verify packages, repositories and other MCP servers before using them.
Phylax MCP exposes the Phylax verification API through the Model Context Protocol, so any MCP aware assistant such as Claude, VS Code Copilot, Cursor or Windsurf can check a package, audit a dependency list, or refuse a risky tool as part of a conversation. It runs locally over stdio, or as a shared HTTP server for a team.
- Verify a package before the assistant suggests installing it
- Verify another MCP server before you connect to it
- Batch verify a whole dependency list in one call
- Evaluate an artifact against your organization policy
- Fetch signed attestations as evidence
- Report the current plan and remaining quota
Requires a Phylax API token. Create one at app.phyi.dev.
{
"mcpServers": {
"phylax": {
"command": "npx",
"args": ["-y", "@phyi/mcp"],
"env": {
"PHYLAX_API_TOKEN": "${PHYLAX_API_TOKEN}"
}
}
}
}| Platform | Config file |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
Same shape, in ~/.cursor/mcp.json for every workspace, or .cursor/mcp.json to scope it to one project.
{
"servers": {
"phylax": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@phyi/mcp"],
"env": {
"PHYLAX_API_TOKEN": "${env:PHYLAX_API_TOKEN}"
}
}
}
}Reference the token rather than pasting it. A literal token in these files gets committed, screen shared and synced between machines.
Once connected, ask the assistant to verify something:
Use Phylax to verify pkg:npm/express@4.18.2 before we add it.
| Tool | Purpose |
|---|---|
verify_artifact |
Verify one package URL and return ALLOW, WARN or BLOCK. |
verify_artifacts |
Verify many at once. Preferred for a dependency list. |
verify_mcp_server |
Verify another MCP server before connecting to it. |
check_policy |
Evaluate an artifact against an organization policy. |
get_attestation |
Fetch signed attestations as evidence. |
search_artifacts |
Resolve a vague package name to a package URL. |
phylax_status |
Reachability, plan and remaining quota. |
A BLOCK verdict is returned as a tool error, not as prose. An assistant that reads "this package is risky" as text will often carry on and use it anyway, so the refusal is made structural.
For a team sharing one server rather than spawning one per user:
PHYLAX_API_TOKEN=... \
PHYLAX_MCP_AUTH_TOKEN=... \
npx @phyi/mcp --http --port 8765The server refuses to start on HTTP without PHYLAX_MCP_AUTH_TOKEN. An unauthenticated MCP endpoint grants tool execution to anyone who can reach the port.
Set PHYLAX_MCP_AUDIENCE to reject tokens minted for a different service, even when they are otherwise valid.
| Variable | Default | Notes |
|---|---|---|
PHYLAX_API_TOKEN |
required | Your Phylax API token. PHYLAX_API_KEY also accepted. |
PHYLAX_API_BASE_URL |
https://api.phyi.dev |
|
PHYLAX_MCP_TRANSPORT |
stdio |
Set to http for a shared server. |
PHYLAX_MCP_PORT |
8765 |
HTTP only. |
PHYLAX_MCP_AUTH_TOKEN |
none | Required for HTTP. |
PHYLAX_MCP_AUDIENCE |
none | Expected aud claim on inbound tokens. |
The assistant never calls a tool. The client did not start the server. Run the command yourself to see the error the client swallowed:
PHYLAX_API_TOKEN=... npx @phyi/mcpEvery tool reports unauthenticated. The token is missing, malformed or revoked. Ask the assistant to run phylax_status.
Every tool reports plan_required. The capability is not part of the current subscription.
The client shows a broken protocol stream. Something wrote to stdout. On stdio, stdout carries the protocol; all logging goes to stderr.
Contributor commands
npm install
npm run typecheck
npm test
npm run buildMIT
| Tool | Where to get it |
|---|---|
| JavaScript SDK | @phyi/sdk on npm |
| Python SDK | phylax-sdk, PyPI release pending |
| MCP server | @phyi/mcp on npm |
| Agent runtime gate | @phyi/runtime-gate on npm |
| VS Code extension | phylax.phylax on the Marketplace |
| GitHub Action | praxi-labs/phylax-action |
| Browser extension | praxi-labs/phylax-chrome, Web Store listing pending |
Docs live at phyi.dev.