SDK + MCP + CLI
Every interface you need. JavaScript SDK, Python SDK, 86 MCP tools, and a full CLI — all sharing your API quota.
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
| Method | Description | Product |
|---|---|---|
verify(did) | Verify agent identity and get trust score | Agent ID |
scanner.scan(output) | Scan agent output for threats | Scanner |
trust.get(did) | Get trust score and attestations | Trust Network |
intel.check(fingerprint) | Check threat intelligence database | Threat Intel |
audit.run(config) | Run compliance audit | Agent Audit |
shadow.deploy(config) | Deploy honeypot agent | Shadow Network |
firewall.check(req) | Check firewall rules | Firewall |
tracker.list(opts) | Track agent behavior | Tracker |
chain.mint(config) | Mint agent NFT | Blockchain |
payments.send(tx) | Send micropayment | Payments |
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