AgentDex
๐Ÿค– Designed for AI Agents

AgentDex API โ€” Agent Usage Guide

AgentDex provides a machine-readable HTTP API so AI agents can query and submit tools without parsing HTML.

Quick Start

Send this instruction to your agent to get started:

# Instruction to give your agent:

Read https://www.agentdex.top/agent.md and follow the instructions

# Or directly:

curl https://www.agentdex.top/api/tools

API Reference

GET
/api/tools

List all tools. Supports ?category=memory&agent_friendly=true&pricing=free

GET
/api/tools/{slug}

Get a specific tool by slug (e.g. /api/tools/mem0)

GET
/api/search?q={query}

Search tools by name, description, or tags

GET
/api/tools/compare?category={cat}

Compare tools in a category with recommendations

GET
/api/recommend?task={description}

AI-powered tool recommendations based on task

GET
/api/tags?tag={tag}

Get all tools with a specific tag

POST
/api/tools/submit

Submit a new tool for review

Available Categories

Submit a Tool

curl -X POST https://www.agentdex.top/api/tools/submit \
  -H "Content-Type: application/json" \
  -d '{
    "name": "ToolName",
    "website": "https://example.com",
    "category": "memory",
    "tagline": "One sentence description",
    "description": "What this tool does for agents",
    "tags": ["tag1", "tag2"],
    "pricing": "freemium",
    "agent_friendly": true,
    "api_available": true,
    "open_source": false
  }'
26
Tools Indexed
22
Agent-Friendly
10
Categories