Access the AgentNet tool catalog and MCP servers through our API, CLI, or connect directly via MCP protocol. Ship agent-powered features in minutes.
Sign in to get your API key
AgentNet works with any MCP-aware AI tool. Pick yours below — copy the snippet, follow the docs link, you're in.
Anthropic's terminal coding agent — add AgentNet as an MCP server in one command.
OpenAI's CLI coding agent. Connect AgentNet via MCP; the tool catalog appears alongside Codex's built-in tools.
AI-first IDE with first-class MCP. Add AgentNet under Settings → MCP and the editor's agent gets all 750+ tools.
Google's agentic IDE. Add AgentNet via the IDE's MCP settings panel — same JSON shape as Cursor.
Open-source coding agent with native MCP support. Fully self-hostable; AgentNet plugs in like any other server.
Open-source MCP-aware agent runtime. Drop AgentNet into its mcp.json the same way you would in OpenCode.
Two-way: run AgentNet inside NVIDIA's NeMo Agent Toolkit, AND power Iris itself with Nemotron / Llama-on-NIM via the AgentNet settings page.
Anthropic's desktop app. The original MCP host — paste the config and AgentNet's 750 tools appear in chat.
Google's terminal agent for Gemini. Add AgentNet via the standard MCP config so Gemini can call any of our tools.
Use Perplexity's Sonar models against AgentNet's tool catalog by routing through the AgentNet API.
Nous Research's Hermes models. Run locally or via inference providers, route tool calls through AgentNet's MCP server.
Open-source IDE assistant. Add AgentNet as a context provider via the standard MCP config in ~/.continue/config.json.
Our own CLI. Install once, get search / ask / agent / skills.add commands without writing a single integration.
Plain HTTPS — talk to AgentNet from any language. JSON in, JSON out, SSE for streaming.
Connect AgentNet to your AI tools. Works with Claude Desktop, Cursor, Claude Code, and any MCP-compatible client.
{
"mcpServers": {
"agentnet": {
"url": "https://backagentnet.codiris.app/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}Add to your claude_desktop_config.json or Cursor MCP settings.
Install AgentNet skills in any AI agent — Claude, ChatGPT, Copilot, Gemini, Cursor, and 30+ more. Your agent gets instant access to the full tool catalog via the Agent Skills open standard.
# Copy the skill folder into your Claude Code skills directory cp -r skills/agentnet ~/.claude/skills/
git clone https://github.com/irislab/agentnet-skills.git
Works with 30+ AI agents that support the Agent Skills spec — including Roo Code, JetBrains, Mistral, Spring AI, AWS Kiro, and more.
Base URL: https://backagentnet.codiris.app
/v1/search/v1/ask/stream/v1/registry/v1/registry/{slug}/v1/registry/execute/v1/registry/categories/v1/tools/v1/tools/{id}/v1/capabilitiescurl -X POST https://backagentnet.codiris.app/v1/search \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{"intent": "send email via gmail", "limit": 5}'pip install agentnet-cli
agentnet config set --api-key YOUR_API_KEY
agentnet search <query>agentnet ask <question>agentnet agent <goal>agentnet tools listagentnet skills listagentnet skills add <repo>agentnet statuspip install agentnet
from agentnet import Client
client = Client(api_key="YOUR_API_KEY")
# Search tools by intent
results = client.search("send email via gmail")
# Execute a skill
output = client.skills.execute("find-leads", query="SaaS founders in SF")
# Stream a response
for chunk in client.ask("Compare CRM tools for startups"):
print(chunk, end="")SDKs coming soon. Use the REST API directly in the meantime.