Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Capytail is a local MCP capability router that selects relevant skills before loading context, enabling efficient routing without executing or loading all skills upfront.

README.md

Capytail

A local MCP capability router that selects relevant skills before loading context.

Capytail is a selector, not an execution gateway. It helps agents avoid loading every skill, agent, or MCP recommendation into context up front.

Status

Experimental 0.1.x.

Use it when you want:

  • compact capability routing;
  • read-only MCP runtime tools;
  • local CLI ingestion for trusted skills;
  • deterministic selection before optional full skill loading.

Do not use it as:

  • an MCP proxy;
  • an agent orchestrator;
  • persistent memory;
  • a RAG/vector database;
  • a remote skill installer.

Install

npm install -g capytail

From source:

npm install
npm run build
node dist/src/cli.js --help

MCP runtime

Start the read-only MCP server:

capytail mcp

Public MCP tools:

| Tool | Purpose | |---|---| | capytail_route | Select relevant capabilities for a request. | | capytail_list | List compact discovered capabilities. | | capytail_get_capability | Fetch full content for one selected local skill/agent id. |

Normal agent flow:

capytail_route({ request })
→ capytail_get_capability({ id })

route and list return compact metadata only. They do not return full skill bodies.

CLI admin

Add a local skill after a static SkillSpector scan:

capytail add-skill ./my-skill
capytail add-skill ./my-skill --project-root . --name my-skill
capytail add-skill ./my-skill --allow-medium

The CLI uses a fixed scanner path:

$HOME/.pi/agent/tools/skillspector/.venv/bin/skillspector

--skillspector-path is intentionally rejected.

When a skill is accepted, Capytail copies it into:

.capytail/skills/<name>/

Then it enriches the copied SKILL.md with missing routing metadata:

aliases: <name>
triggers: ...
use_when: ...

It also associates the skill with the current project using the existing capability graph:

{
  "graph": {
    "projectId": "project:my-project",
    "edges": [
      {
        "from": "project:my-project",
        "relation": "project_has_skill",
        "to": "skill:project:my-skill"
      }
    ]
  }
}

The original source skill is not modified.

Configuration

Capytail reads capytail.config.json or .capytail/config.json from the project root.

See examples/capytail.config.json.

Benchmarks

In a local corpus of 43 SKILL.md files:

| Flow | Approx tokens | Time | |---|---:|---:| | Load all skills | ~121k | n/a | | route only | ~1.0k–1.3k | ~10–15ms | | route + get | ~7.4k–40.8k | ~63–80ms |

See docs/benchmarks.md.

Security model

See SECURITY.md and docs/security-model.md.

Short version:

  • MCP surface is read-only.
  • Skill ingestion is CLI-only.
  • Local paths only.
  • Static SkillSpector scan only, --no-llm.
  • No remote URL ingestion.
  • No dependency installation.
  • No skill execution.

Development

npm test
npm run typecheck
npm run build

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.