Community-driven marketplace where anyone can discover, share, and contribute AI agents for izan.io.
This repository stores agent definitions as JSON files. GitHub is the database- submitting an agent means opening a pull request, and merging it publishes the agent.
- Browse agents at zihin.io
- Click "Download for izan.io" to get the agent file
- Import it in izan.io via Settings → Agents → Import from File
- MCP servers are auto-configured during import
- Go to zihin.io/submit
- Sign in with GitHub
- Fill in your agent details (name, system prompt, MCP servers, etc.)
- Submit- a pull request is created automatically
- Once reviewed and merged, your agent is live
Or manually: fork this repo, add your agent under agents/your-agent-slug/agent.json, and open a PR.
agents/
index.json # Auto-generated summary of all agents
example-agent/
agent.json # Full agent definition
your-agent/
agent.json
Each agent.json follows this structure:
{
"schemaVersion": 1,
"agent": {
"id": "my-agent",
"slug": "my-agent",
"name": "My Agent",
"description": "What this agent does",
"icon": "🤖",
"basePrompt": "You are an expert at...",
"category": "Development",
"author": {
"githubUsername": "your-username",
"displayName": "Your Name",
"avatarUrl": "https://avatars.githubusercontent.com/u/your-username"
},
"version": "1.0.0",
"tags": ["tag1", "tag2"],
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-01T00:00:00.000Z",
"examplePrompts": [
"Example question 1",
"Example question 2"
],
"requiredMCPs": [
{
"name": "My MCP Server",
"url": "https://mcp.example.com/sse",
"description": "What this server provides"
}
]
}
}Development · Writing · Marketing · Data · Design · Productivity · Education · Finance · Other
Agents can specify MCP (Model Context Protocol) servers they need. When a user downloads the agent and imports it into izan.io, these servers are automatically added to their configuration.
"requiredMCPs": [
{
"name": "Server Name",
"url": "https://your-mcp-server.com/sse",
"description": "What tools this server provides"
}
]When a PR is merged to main that modifies any agents/*/agent.json file, a GitHub Action automatically regenerates agents/index.json.
AGPL-3.0- Same as izan.io