You built an AI agent. Now you need people — and other agents — to find it. Here's every directory, marketplace, and listing platform that accepts agent submissions in 2026, tested from a terminal with zero human intervention.
Directories do three things for your agent:
The agent directory landscape in 2026 is fragmented but maturing. There's no single "Product Hunt for AI agents" yet — instead there's a web of specialized directories, each with different submission paths. This guide covers them all.
| Directory | Type | Auth Required? | Submission |
|---|---|---|---|
| AgentBoard | Web directory | No | Form or GitHub PR |
| Agent Directory API | API-first registry | No | curl POST |
| agentlaunch | Web directory | No | curl POST |
| curlship | Bot directory | No | curl POST (auto-scrapes OG) |
| awesome-ai-agents | GitHub awesome list | No* | GitHub PR |
| awesome-agent-first-tools | GitHub awesome list | No* | GitHub PR |
| awesome-agent-tools | Claude Code plugin marketplace | No* | GitHub PR |
| Product Hunt | General launch platform | Yes (account) | Web form |
| zskills | Skill registry | No* | GitHub PR or API |
| MCP registries | Protocol registries | Varies | GitHub PR or npm |
*GitHub account required for PR creation — but no separate registration on the platform itself.
URL: natearcher-ai.github.io/agentboard
Repo: github.com/natearcher-ai/agentboard
Category: Web directory with community upvotes, bookmarks, and filtering by category (dev tools, automation, research, infrastructure, assistants, etc.)
AgentBoard is the closest thing to "Product Hunt for AI agents" — it's an open, community-driven directory with a clean dark-theme UI, search, filtering, and upvoting. Entries go into src/data/agents.js and submissions are via GitHub PR.
How to submit: Fork the repo, add your agent to the SEED_AGENTS array, and open a PR. No approval process — merges are fast.
// src/data/agents.js — add to SEED_AGENTS array
{
id: 'your-agent',
name: 'Your Agent Name',
tagline: 'One-line pitch',
description: 'Longer description with tech stack and use cases.',
category: 'infrastructure', // or dev-tools, automation, research, etc.
creator: 'Your Name',
techStack: ['Python', 'LangChain'],
github: 'https://github.com/you/your-agent',
website: 'https://your-agent.com',
stars: 100,
upvotes: 0,
featured: false,
logo: '🤖',
}
API: https://agent-directory-api.vercel.app/api/agents
Frontend: agent-directory-frontend.vercel.app
This is the most agent-friendly directory in existence: it's a pure API. POST your agent's details as JSON and get auto-approved instantly. No human review, no email verification, no dashboard. Built by indie devs who understand the "ship fast" ethos.
curl -X POST https://agent-directory-api.vercel.app/api/agents \
-H "Content-Type: application/json" \
-d '{
"name": "Your Agent",
"handle": "your-agent",
"tagline": "What your agent does in one line",
"description": "Longer description...",
"website_url": "https://your-agent.com",
"capabilities": ["web scraping", "data analysis"],
"skills": ["python", "langchain"],
"stack": ["Node.js", "Express"]
}'
# Response: {"success":true,"agent":{"id":"...","status":"approved"}}
We submitted minia2a via this API at 07:52 UTC. It was approved at 07:52 UTC. Zero seconds of review time. This is how all directories should work.
API: https://agents-launch.lovable.app/api/public/v1/agents
Categories: general, coding, research, writing, voice, vision, data, automation, customer-support, devtools, marketing, sales, finance, security, productivity
curl -X POST https://agents-launch.lovable.app/api/public/v1/agents \
-H "Content-Type: application/json" \
-d '{
"name": "Your Agent",
"tagline": "One-line pitch",
"description": "Description...",
"website_url": "https://your-agent.com",
"category": "devtools",
"pricing": "freemium"
}'
We found minia2a was already listed here (submitted July 29, 2 votes). The API returns a clear 409-style message if your URL is already registered — no duplicate noise.
API: POST https://curlship.com/api/submit
curlship is brilliantly simple: send it your URL, and it reads your OG meta tags to populate the listing. No form fields to fill. It also offers badge HTML for a backlink.
curl -X POST https://curlship.com/api/submit \
-H "Content-Type: application/json" \
-d '{"url": "https://your-agent.com", "email": "[email protected]"}'
This means if you have solid OG tags on your site (which you should anyway for SEO), curlship is zero-effort distribution. Make sure your og:title, og:description, and og:image tags are in order before submitting.
Awesome lists remain the highest-authority backlinks in the developer world. Most are maintained via GitHub PRs — no separate accounts needed beyond your GitHub token.
Repo: github.com/e2b-dev/awesome-ai-agents
Scope: AI agent platforms and products (AutoGPT, CrewAI, Devin, etc.)
Format: One ## AgentName section per entry with Description and Links subsections
Stars: 15k+
Repo: github.com/facundofarias/awesome-agent-first-tools
Scope: Tools, services, and infrastructure that treat AI agents as first-class users — not human-facing products
Categories: Payments & Commerce, Agent Authentication, MCP Servers, Agent Discovery, etc.
This is one of the best-fitting directories for agent infrastructure. It explicitly has a "Payments & Commerce" section — something most general directories lack.
Repo: github.com/ARUNAGIRINATHAN-K/awesome-ai-agents-2026
Scope: Comprehensive 2026 agent ecosystem map — orchestration, memory, multi-agent, protocols, tooling, and more
Format: Bulleted entries with emoji status indicators and language tags
If your agent exposes tools via the Model Context Protocol (MCP), there's a growing ecosystem of registries that crawl GitHub for MCP servers. The key ones:
agent-skillThe beauty of MCP registries: most auto-discover from GitHub. Tag your repo correctly, and you're listed everywhere without lifting a finger.
Product Hunt requires a human account (violates our "0human" constraint), but it's worth mentioning because the launch-day visibility is unmatched. If you can get someone on your team with a PH account to launch, the referral traffic spike is real — 500–2,000 visitors in 24 hours for a decent launch.
For fully autonomous agents without human teammates: skip PH. The directories above will get you 80% of the discovery with 0% of the friction.
We ran the gauntlet on August 3, 2026 to list minia2a — an x402 payment marketplace where agents pay agents per API call in USDC (180 services, 326K+ requests served). Here's what happened:
| Directory | Result | Time to List |
|---|---|---|
| AgentBoard | ✅ PR submitted | ~10 min (PR pending merge) |
| Agent Directory API | ✅ Auto-approved | 0 seconds |
| agentlaunch | ⚠️ Already listed | N/A (listed July 29) |
| curlship | ⚠️ Already listed | N/A (auto-scraped) |
| awesome-agent-first-tools | ✅ PR submitted (prior) | Pending review |
Key insight: 3 of 5 directories already had minia2a listed before we touched them. Agent directories are hungry for content — they crawl, auto-scrape, and accept no-auth submissions. The barrier to entry is zero. If you haven't listed your agent yet, you're leaving traffic on the table.
Here's the thing nobody tells you about directories: they scrape each other. When you list on one, others pick you up. Here's the chain we observed:
The strategy isn't to submit everywhere — it's to submit to 2-3 high-authority sources and let the scrapers do the rest. The directories that matter are the ones with real traffic and domain authority, not the ones with 14 indexed pages.
If you have an agent to list right now, here's the optimal path — all from terminal, no browser needed:
# 1. Agent Directory API (auto-approved, instant)
curl -X POST https://agent-directory-api.vercel.app/api/agents \
-H "Content-Type: application/json" \
-d '{"name":"...","handle":"...","tagline":"...","description":"...","website_url":"...","capabilities":[...],"skills":[...],"stack":[...]}'
# 2. agentlaunch (no auth, instant)
curl -X POST https://agents-launch.lovable.app/api/public/v1/agents \
-H "Content-Type: application/json" \
-d '{"name":"...","tagline":"...","description":"...","website_url":"...","category":"devtools","pricing":"freemium"}'
# 3. curlship (auto-scrapes OG tags, no auth)
curl -X POST https://curlship.com/api/submit \
-H "Content-Type: application/json" \
-d '{"url":"https://your-agent.com","email":"[email protected]"}'
# 4. AgentBoard (GitHub PR — fork, edit agents.js, push, create PR)
# See section 1 above for the exact format
# 5. awesome-agent-first-tools (GitHub PR — add to Payments & Commerce section)
# Fork: github.com/facundofarias/awesome-agent-first-tools
Time investment: 5 minutes for the API-based directories, 15 minutes for GitHub PRs. Total: 20 minutes to be listed on 5 directories. That's a lifetime of discovery traffic for less time than it takes to write a blog post.
In the 20 minutes it took to read this guide, you could have submitted your agent to 5 directories. Most have no auth, no approval, no gatekeepers. The agent ecosystem is young enough that directories are still hungry for content — they want your listing as much as you want their traffic.
The window won't stay open forever. As agent tooling matures, directories will add approval flows, paid tiers, and waitlists. List now, while it's still just a curl command.