Pre-defined skill definitions that describe MCPShim's capabilities in a format AI agents can understand.
Each skill is a standalone SKILL.md file that documents a single MCPShim capability - what it does, how to invoke it, and when to use it. AI agents and tool-use frameworks can consume these files to understand what actions are available.
| Skill | Description |
|---|---|
| mcpshim-install | Install, configure, and start the MCPShim daemon |
| mcpshim-status | Check daemon health and cached discovery counts |
| mcpshim-discover-tools | Discover MCP/HTTP services, tools, and input schemas |
| mcpshim-call-tool | Invoke MCP or HTTP tools with schema-aware arguments |
| mcpshim-manage-servers | Manage MCP endpoints, HTTP bindings, auth, and reloads |
| mcpshim-read-history | Review persisted tool-call arguments and outcomes |
Skills are not code - they're structured documentation. Each SKILL.md contains:
- Frontmatter with
nameanddescriptionfor machine indexing - Prerequisites the agent must satisfy before using the skill
- Usage examples with exact CLI commands
- Flag/option tables for structured parameter reference
- When to Use guidance for agent decision-making
An agent framework can read these files to populate its tool registry, or an LLM can use them as context to know which commands to run. For daemon, CLI, MCP, and HTTP-service documentation, see the main MCPShim repository.
Skills are versioned from VERSION and published as versioned and stable
archives:
curl -fsSL https://github.com/mcpshim/skills/releases/latest/download/mcpshim-skills.zip -o /tmp/mcpshim-skills.zipAll skills use the mcpshim CLI. The daemon resolves the MCP endpoint or
configured HTTP service and tool from each command automatically:
mcpshim servers # list connected servers
mcpshim tools # discover available tools
mcpshim call --server notion --tool search --query "projects"
mcpshim history --server notion --limit 20