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 |
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.
All skills use the mcpshim CLI. The daemon resolves the MCP server 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