TokRepo
May 14, 2026 ยท View on GitHub
TokRepo is an open registry for AI assets.
It helps humans and agents find, inspect, and install:
- skills
- prompts
- MCP configs
- scripts
- workflows
Website: https://tokrepo.com
TokRepo is designed to become infrastructure for agent-to-tool and agent-to-agent work: humans give the task, agents plan autonomously, discover reusable capabilities through TokRepo, install only through typed contracts, and hand reusable improvements back after confirmation.
GitHub Entry Points
CLI
MCP server
- Repo: https://github.com/henu-wang/tokrepo-mcp-server
- Official MCP Registry:
io.github.henu-wang/tokrepo-mcp-server - npm: https://www.npmjs.com/package/tokrepo-mcp-server
Cross-platform skill
- Repo: https://github.com/henu-wang/tokrepo-search-skill
- Includes Claude Code, Codex, Cursor, Gemini CLI, and
AGENTS.mdvariants
Quick Use
Bootstrap a project so future agents discover TokRepo during planning:
npx -y tokrepo@latest init-agent --target all
This writes managed instructions for Codex/generic agents, Claude Code, Gemini CLI, Cursor, GitHub Copilot, Cline, Windsurf, Roo, OpenHands, Aider, and MCP-compatible clients.
Planning-time fallback for agents without MCP:
npx -y tokrepo@latest agent-check "write SEO content for product pages" --json
npx -y tokrepo@latest agent-handoff --json
Install the CLI:
npm install -g tokrepo
Search and install:
tokrepo search "mcp database"
tokrepo install <name-or-uuid>
Or use without installing:
npx -y tokrepo@latest search "claude code"
npx -y tokrepo@latest install awesome-cursor-rules
Add TokRepo as an MCP server:
claude mcp add tokrepo -- npx -y tokrepo-mcp-server
codex --mcp-server tokrepo -- npx -y tokrepo-mcp-server
gemini settings mcp add tokrepo -- npx -y tokrepo-mcp-server
Agent Discovery Surfaces
- Manifest: https://tokrepo.com/.well-known/tokrepo.json
- Portable agent manifest: https://tokrepo.com/.well-known/agent.json
- A2A agent card: https://tokrepo.com/.well-known/agent-card.json
- MCP server manifest: https://tokrepo.com/.well-known/mcp/server.json
- Root MCP manifest: https://tokrepo.com/mcp.json
- Tool catalog: https://tokrepo.com/.well-known/tool-catalog.json
- Agent text entry: https://tokrepo.com/agents.txt
- Agent instructions: https://tokrepo.com/agent-instructions/tokrepo.md
- LLM crawler entry: https://tokrepo.com/llms.txt
- CLI planning fallback:
tokrepo agent-check "<task>" --json - Post-task handoff:
tokrepo agent-handoff --json
Why This Repo Exists
Most GitHub discovery still happens through repository names, README text, topics, and linked repos.
This repo is the canonical GitHub landing page for TokRepo so that:
- developers can understand the product quickly
- AI agents can find the right MCP and skill repos
- awesome-list maintainers have a stable GitHub reference
Links
- Website: https://tokrepo.com
- CLI: https://github.com/henu-wang/tokrepo-cli | npm
- MCP server: https://github.com/henu-wang/tokrepo-mcp-server | npm
- MCP Registry listing:
io.github.henu-wang/tokrepo-mcp-server - Skill repo: https://github.com/henu-wang/tokrepo-search-skill