Sign In

@fractalai/agent-passport-mcp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fractalai/agent-passport-mcp

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

latest
Source
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

Agent Passport — MCP server

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

Tools

ToolCostWhat it REALLY does today
verify_passportfreeGiven 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_passportx402 ($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_agentfreePublic 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.

x402-paid tools (v0.2.0) — post-quantum proofs, pay-per-call

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.

ToolPriceWhat it does
seal_ml_dsa$0.02Post-quantum signature over any message/hash — durable, quantum-safe, offline-verifiable.
verify_proof$0.01Verify a signature (auto-detects ML-DSA-65 or Dilithium-2). The floor primitive for any proof pipeline.
verify_agent_kya$0.03Know-Your-Agent: verify another agent's credential + live FRC-55 reputation before you trust/pay it.
notarize_decision$0.05Notarize an AI decision (input, output, model) → auditable, non-repudiable, on-chain (EU AI Act Art. 12).
prove_provenance$0.05Provenance seal over a dataset/content hash + drand timestamp + on-chain anchor.
attest_training$0.05C2PA training-provenance manifest for a model, post-quantum signed.
seal_cbom$0.05Seal 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.

Honest scope (read this — project Regla 4)

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:

  • that the assertion is true, or that the agent's decision/action was correct;
  • any decentralized / consensus-scored reputationissue_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.

What is real today vs roadmap

  • Real today: offline ML-DSA-65 verification against the published key; server-assisted Dilithium-2 verification + tamper control; FRC-55 on-chain agent reads; the real x402 402→pay→seal flow for issuing.
  • Roadmap (not claimed as done): server-issued attestations are currently self-signed by the server key and anchored on FractalAI's own L1; full on-chain consensus validation and a decentralized, consensus-scored reputation are future milestones. The ml_dsa65 detached signature is delivered to pilot integrations today (pass it via the receipt argument) and is being rolled into the public API.

Install & build

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

Configure in an MCP client

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "agent-passport": { "command": "npx", "args": ["-y", "@fractalai/agent-passport-mcp"] }
  }
}

Environment

  • FRACTALAI_BASE_URL — web endpoint base (default https://fractalai.net.co).
  • FRACTALAI_RPC_URL — L1 JSON-RPC node (default https://api.fractalai.net.co).

5-line examples (per framework)

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])

Independent, no-framework verification

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

License

MIT

Keywords

mcp

FAQs

Package last updated on 18 Aug 2026

Did you know?

Socket

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.

Install

Related posts