AgentStack
MCP verified MIT Self-run

Polaxis SDK MCP

mcp-nishant6118-polaxis-sdk-mcp · by nishant6118

Python SDK and MCP server for Polaxis - AI agent governance platform. Evaluate every tool call against policies in real time: block dangerous actions, enforce budgets, route to human approvals. Under 5ms.

No reviews yet
0 installs
8 views
0.0% view→install

Install

$ agentstack add mcp-nishant6118-polaxis-sdk-mcp

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Polaxis SDK MCP? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Polaxis Python SDK & MCP Server

The runtime control layer between your AI agents and the real world — intercept every tool call, enforce policies, require human approval, audit everything. Before anything executes.

[](https://pypi.org/project/polaxis) [](https://pypi.org/project/polaxis) [](LICENSE) [](#)

[](https://docs.polaxis.io) [](https://polaxis.io) [](https://polaxis.io/register) [](https://polaxis.io/benchmark)


What is Polaxis?

Polaxis is the runtime control layer between your AI agents and the tools they call.

You put an API gateway in front of your backend. Polaxis is that gateway for your agents — every tool call intercepted before it executes, evaluated against your policies, and either allowed, blocked, or routed for human approval.

  Your AI agent
        │
        │  tool_call("delete_records", {"table": "users_prod"})
        ▼
┌──────────────────────────────────────────────────────────────┐
│                   Polaxis Control Layer                       │
│                                                              │
│  L1  Regex scan            — 80+ patterns: injection, PII   │
│  L2  Risk scorer           — 15 signals, sub-millisecond    │
│  L3  LLM semantic gate     — fires on ~11% of calls only    │
│  L4  Behavioral baseline   — detects slow drift attacks     │
│  L5  Session graph         — recon → exfil kill-chain       │
│  L6  Threat intel          — per-agent threat level 0–4     │
│  L7  Policy engine         — your rules, budgets, logic     │
│                                                              │
│  0.15ms p50 (regex layers) · $0.00026 per call              │
└──────────────────┬─────────────────────┬────────────────────┘
                   │                     │
                ALLOW              BLOCK / ESCALATE
                   │                     │
           Your tools run         Human approves via
         (database, API…)         Slack or dashboard

Three outcomes for every call

| Decision | Meaning | What to do | |----------|---------|------------| | approved | Within policy. Proceed. | Execute the tool | | blocked | Violates a rule or budget cap. | Abort — reason logged | | escalated | Human sign-off required. | Wait for approval via Slack or dashboard |


Quickstart — 3 lines

pip install polaxis
from polaxis import Polaxis

guard = Polaxis(api_key="ag_prod_...", agent_id="my-agent")

# Wrap any tool call — works with any framework
result = await guard.evaluate(
    tool_name="delete_records",
    tool_input={"table": "users_prod"}
)
# result.decision → "approved" | "blocked" | "escalated"
# result.reason   → "rule: no-prod-delete · 0.15ms"

That's it. Works with LangChain, LangGraph, CrewAI, OpenAI Agents SDK, PydanticAI, AutoGen, or any custom agent — anything that calls a tool.


MCP Proxy — zero code

For Claude Desktop, Cursor, or any MCP client: set three env vars and point your client at the proxy. No code changes.

export POLAXIS_API_KEY=ag_prod_...
export POLAXIS_AGENT_ID=claude-desktop
export TARGET_MCP_SERVER_URL=http://localhost:8080

# Start the proxy
python -m polaxis.mcp_proxy

Every MCP tool call now goes through Polaxis before it reaches your server.


What it protects against

| Threat | What it catches | |--------|-----------------| | Prompt injection | Direct, indirect (RAG/email), encoded (Base64, Unicode, NATO phonetic), multilingual | | Credential leakage | 25+ vendor key formats + high-entropy detection | | PII exfiltration | SSN, passport, credit card, phone, email — 10+ languages | | Memory poisoning | MINJA-style latent trigger attacks on vector stores | | Authority claims | Admin impersonation, sudo escalation, fake system overrides | | Policy Puppetry | XML/INI/JSON structured prompts claiming to disable security | | Economic DoS | Token amplification attacks — hard session cap enforced |


Detection accuracy

> Measured on 459 real-world adversarial payloads — hard tier includes Base64, ROT13, Unicode homoglyphs, zero-width chars, 10+ languages, MINJA memory poisoning, EchoLeak indirect injection.

| Threat Category | Detection Rate | |---|:---:| | Prompt Injection | 99.0% | | Credential / Secret | 100.0% | | PII Detection | 97.8% | | Memory Poisoning | 96.7% | | Authority Claims | 100.0% | | LLM false positive rate | 4.0% | | Regex false positive rate | 0.0% |

99.4% average detection across all threat categories.

Full benchmark methodology


Performance

| Layer | p50 latency | Notes | |-------|-------------|-------| | Regex + risk scorer | 0.15ms | Pure Python, no I/O | | Full 7-layer (no LLM) | ~0.5ms | 89% of calls | | With LLM semantic gate | 80–200ms | ~11% of calls | | Cost per call | $0.00026 | LLM layer only when needed |


Framework examples

LangChain

from langchain.tools import tool
from polaxis import Polaxis

guard = Polaxis(api_key="ag_prod_...", agent_id="langchain-agent")

@tool
async def delete_records(table: str) -> str:
    """Delete records from a table."""
    result = await guard.evaluate(
        tool_name="delete_records",
        tool_input={"table": table}
    )
    if result.decision == "blocked":
        return f"Blocked: {result.reason}"
    # proceed with deletion
    return f"Deleted records from {table}"

OpenAI Agents SDK

from agents import Agent, function_tool
from polaxis import Polaxis

guard = Polaxis(api_key="ag_prod_...", agent_id="openai-agent")

@function_tool
async def send_email(to: str, body: str) -> str:
    result = await guard.evaluate(
        tool_name="send_email",
        tool_input={"to": to, "body": body}
    )
    if result.decision != "approved":
        return f"Action {result.decision}: {result.reason}"
    # send email

CrewAI

from crewai_tools import BaseTool
from polaxis import Polaxis

guard = Polaxis(api_key="ag_prod_...", agent_id="crewai-agent")

class SafeDatabaseTool(BaseTool):
    async def _run(self, query: str) -> str:
        result = await guard.evaluate(
            tool_name="run_query",
            tool_input={"query": query}
        )
        if result.decision == "blocked":
            return f"Blocked by Polaxis: {result.reason}"
        # execute query

Policy rules

Define policies in the dashboard or via JSON:

[
  {
    "rule": "no-prod-delete",
    "tool": "delete_records",
    "condition": "table LIKE '%prod%'",
    "action": "block"
  },
  {
    "rule": "large-charge-approval",
    "tool": "charge_card",
    "condition": "amount > 500",
    "action": "escalate",
    "notify": "#finance-alerts"
  },
  {
    "rule": "daily-budget",
    "agent": "*",
    "budget_usd": 50,
    "period": "day",
    "action": "block"
  }
]

Links

| | | |---|---| | Dashboard | polaxis.io | | Docs | docs.polaxis.io | | Interactive demo | polaxis.io/demo | | Benchmark | polaxis.io/benchmark | | Free tier | 1 agent · 10,000 calls/month · no card required | | PyPI | pip install polaxis |


License

MIT — free to use, modify, and distribute.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.