🧰

SDK + MCP + CLI

Every interface you need. JavaScript SDK, Python SDK, 86 MCP tools, and a full CLI — all sharing your API quota.

86
MCP Tools
2
SDKs (JS + Py)
CLI
agc Command
3
Frameworks
Get Free API Key 🔑

All data shown is simulated for demonstration purposes. Live data requires an API key.

Installation
# JavaScript / TypeScript npm install @agent-chain/sdk # Python pip install agent-chain-sdk # CLI npm install -g @agent-chain/cli # MCP (add to VS Code / Claude Desktop config) { "agentChain": { "command": "npx", "args": ["@agent-chain/mcp-server"] } }
SDK Methods
MethodDescriptionProduct
verify(did)Verify agent identity and get trust scoreAgent ID
scanner.scan(output)Scan agent output for threatsScanner
trust.get(did)Get trust score and attestationsTrust Network
intel.check(fingerprint)Check threat intelligence databaseThreat Intel
audit.run(config)Run compliance auditAgent Audit
shadow.deploy(config)Deploy honeypot agentShadow Network
firewall.check(req)Check firewall rulesFirewall
tracker.list(opts)Track agent behaviorTracker
chain.mint(config)Mint agent NFTBlockchain
payments.send(tx)Send micropaymentPayments
Quick Start
import { AgentChain } from '@agent-chain/sdk'; const ac = new AgentChain({ apiKey: 'ac_live_xxx' }); // Verify + Scan + Trust in one flow const identity = await ac.verify('did:agent:abc123'); const scan = await ac.scanner.scan({ output: agentResponse }); const trust = await ac.trust.get('did:agent:abc123'); if (identity.verified && scan.safe && trust.score > 70) { console.log('Agent is trustworthy'); }
Framework Integrations
🦜 LangChain
Ready
Drop-in tool integration for LangChain agents and chains
👥 CrewAI
Ready
Agent verification for CrewAI multi-agent workflows
🤖 AutoGen
Ready
Trust scoring and scanning for AutoGen conversations
AC Agent Chain Assistant
Hi! I can help you with any of our 12 products, pricing, API integration, and more. What would you like to know?
Agent Chain is typing...