
Product
Socket Now Protects the Firefox Extension Ecosystem
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.
@fractalai/agent-passport-mcp
Advanced tools
Model Context Protocol (MCP) server to ISSUE and independently VERIFY verifiable agent passports: ML-DSA-65 (NIST FIPS 204) signature verification + FRC-55 on-chain agent lookup on the FractalAI L1. Works with LangChain, CrewAI, AutoGen, OpenAI Agents — a
The free tool a developer drops in, in ~5 lines, to issue and independently verify a verifiable passport for an AI agent — over the Model Context Protocol, so it works in LangChain, CrewAI, AutoGen, OpenAI Agents, Claude Desktop — anything that speaks MCP.
It talks to the real, public FractalAI deployment: the live L1 JSON-RPC node at
https://api.fractalai.net.co (FRC-55 agent registry) and the web endpoints at
https://fractalai.net.co (attestations, receipt key, x402). Nothing here is mocked.
npx @fractalai/agent-passport-mcp
| Tool | Cost | What it REALLY does today |
|---|---|---|
verify_passport | free | Given an attestation permalink / 0x hash (and optionally the receipt JSON): recomputes the content hashes, reconstructs the exact canonical signed message, verifies the ML-DSA-65 (NIST FIPS 204) signature 100% offline against the published /api/x402/receipt-key, verifies the Dilithium-2 signature server-assisted with a tamper negative-control, and reads the agent's FRC-55 on-chain state. Returns { valid, algorithm, checks[], anchored, decision, agent }. |
issue_passport | x402 ($0.05 USDC) | Binds an agent_id + a signed assertion + a re-verifiable permalink: resolves the agent on the FRC-55 registry (if it's an on-chain id) and seals the assertion through the real x402 attest-decision flow (Dilithium-2 signed, Black-Box chained, anchored on the L1). Without a payment_tx_hash it returns the payment challenge — it never fabricates a passport. |
lookup_agent | free | Public FRC-55 registry read on the live node: fractal_getAgent for one agent (name, owner, status, model, total_calls, rating, total_ratings, created_at) or fractal_listAgents for all, always with fractal_getAgentStats. |
The 7 FractalAI x402 routes are surfaced as auto-payable MCP tools. An x402-aware wallet client
signs an EIP-3009 authorization and pays in USDC on Base using the standard _meta["x402/payment"]
convention. Each served signature is ML-DSA-65 / Dilithium-3 (NIST FIPS 204) and verifiable
offline; each also attempts an on-chain anchor on FractalAI's L1 (the anchor signature is
Dilithium-2 / ML-DSA-44-class, pending the gated consensus cut-over — see "Honest scope"). Uses the
FIPS-204-standardized algorithm via audited @noble/post-quantum (not a FIPS-validated CMVP module).
Call any tool without payment first to get the exact price + payment challenge.
| Tool | Price | What it does |
|---|---|---|
seal_ml_dsa | $0.02 | Post-quantum signature over any message/hash — durable, quantum-safe, offline-verifiable. |
verify_proof | $0.01 | Verify a signature (auto-detects ML-DSA-65 or Dilithium-2). The floor primitive for any proof pipeline. |
verify_agent_kya | $0.03 | Know-Your-Agent: verify another agent's credential + live FRC-55 reputation before you trust/pay it. |
notarize_decision | $0.05 | Notarize an AI decision (input, output, model) → auditable, non-repudiable, on-chain (EU AI Act Art. 12). |
prove_provenance | $0.05 | Provenance seal over a dataset/content hash + drand timestamp + on-chain anchor. |
attest_training | $0.05 | C2PA training-provenance manifest for a model, post-quantum signed. |
seal_cbom | $0.05 | Seal a CycloneDX CBOM (crypto inventory) — CNSA 2.0 / procurement PQC-readiness disclosure. |
Payment note: paid tools accept the standard _meta["x402/payment"] (auto-pay) and also a plain
payment string arg (base64 X-PAYMENT) as a universal fallback. Nothing is fabricated — the tools
proxy to the live routes and relay exactly what they return, honest scope included.
A valid passport proves an identity + a specific attested assertion are cryptographically intact over the exact signed bytes, that the record is internally consistent, and that it is anchored on FractalAI's L1. It does NOT prove:
issue_passport does not register reputation;lookup_agent ratings are the registry's own counters as reported by the node, not an independent audit.Signature checks are labeled by trust model: [independent] = computed locally, does not trust
the FractalAI server (the offline ML-DSA-65 check, content hashes); [server-assisted] = calls a
FractalAI endpoint (the Dilithium-2 /api/proofmind/verify check). The ML-DSA-65 verification uses the
FIPS-204-standardized algorithm via the audited @noble/post-quantum library — this is not a
FIPS-validated (CMVP) module.
ml_dsa65 detached signature is delivered to
pilot integrations today (pass it via the receipt argument) and is being rolled into the public API.cd integrations/agent-passport-mcp
npm install
npm run build # tsc → dist/
npm test # handshake: server stands up, tools respond, ML-DSA-65 round-trips
claude_desktop_config.json){
"mcpServers": {
"agent-passport": { "command": "npx", "args": ["-y", "@fractalai/agent-passport-mcp"] }
}
}
FRACTALAI_BASE_URL — web endpoint base (default https://fractalai.net.co).FRACTALAI_RPC_URL — L1 JSON-RPC node (default https://api.fractalai.net.co).All of these run the same MCP server (npx @fractalai/agent-passport-mcp) over stdio and call the tools.
LangChain (Python) — langchain-mcp-adapters:
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({"agent_passport": {"command": "npx", "args": ["-y", "@fractalai/agent-passport-mcp"], "transport": "stdio"}})
tools = await client.get_tools() # verify_passport, issue_passport, lookup_agent
agent = create_react_agent(model, tools)
await agent.ainvoke({"messages": "Verify passport https://fractalai.net.co/attestation/0x…"})
CrewAI (Python) — crewai-tools MCP adapter:
from crewai_tools import MCPServerAdapter
from mcp import StdioServerParameters
params = StdioServerParameters(command="npx", args=["-y", "@fractalai/agent-passport-mcp"])
with MCPServerAdapter(params) as tools:
Agent(role="Auditor", tools=tools, goal="Verify agent passports", backstory="...")
AutoGen (Python) — autogen-ext MCP workbench:
from autogen_ext.tools.mcp import StdioServerParams, mcp_server_tools
params = StdioServerParams(command="npx", args=["-y", "@fractalai/agent-passport-mcp"])
tools = await mcp_server_tools(params) # verify_passport / issue_passport / lookup_agent
agent = AssistantAgent("auditor", model_client=client, tools=tools)
OpenAI Agents SDK (Python):
from agents import Agent
from agents.mcp import MCPServerStdio
async with MCPServerStdio(params={"command": "npx", "args": ["-y", "@fractalai/agent-passport-mcp"]}) as server:
agent = Agent(name="Auditor", instructions="Verify and issue agent passports.", mcp_servers=[server])
Because a passport is designed for third-party verification, you don't even need this server to check one — an independent party can run the zero-trust verifier that this tool mirrors:
node enterprise-trial/verify-receipt.mjs https://fractalai.net.co/attestation/0x… receipt.json
MIT
FAQs
Model Context Protocol (MCP) server to ISSUE and independently VERIFY verifiable agent passports: ML-DSA-65 (NIST FIPS 204) signature verification + FRC-55 on-chain agent lookup on the FractalAI L1. Works with LangChain, CrewAI, AutoGen, OpenAI Agents — a
We found that @fractalai/agent-passport-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.

Research
/Security News
Three compromised Rust crates pulled in a malicious dependency that downloaded and executed cross-platform malware during Cargo builds.

Research
/Security News
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.