Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Template for skills that integrate with an MCP server. Demonstrates the reference file pattern: Claude reads a domain-specific MCP cheatsheet before making any tool calls, reducing query failures caused by server-specific gotchas. Fork this skill and replace the Sentry example with your target MCP.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-05 | ✗→✓ | ▲ Improved | 104% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 246% | 0% |
| case-11 | ✗→✓ | ▲ Improved | -17% | 0% |
| case-15 | ✗→✓ | ▲ Improved | -1% | 0% |
| case-16 | ✗→✓ | ▲ Improved | 10% | 0% |
> This is a template skill. It shows how to structure a skill that wraps an MCP server. Replace sentry with your MCP server name and adapt the reference file at references/sentry-mcp.md.
When a skill calls an MCP server without prior context, Claude guesses at the query syntax. This works for simple calls but breaks on anything with non-obvious behavior: pagination quirks, required parameter combinations, rate limits, or subtle format restrictions.
The fix: a references/<mcp-name>.md file that captures all the gotchas. The skill reads this file before making any MCP call. Zero guessing.
Three types of content go in the reference file:
Before doing anything else, read the full MCP reference:
Read: references/sentry-mcp.mdThis file contains query syntax, known gotchas, and working examples for the Sentry MCP. Do not skip this step.
Ask the user:
production, staging, or both?If the user says "just run it with defaults", use:
production onlyUsing the tool knowledge from Step 1, fetch:
Cap results at 50 issues. If more exist, note the count and focus on the highest-frequency items.
Group issues by root cause, not by error message. Two issues with different messages can share the same underlying cause (shared code path, same external dependency, same config).
For each group:
Output a markdown report with this structure:
markdown# Error Report: [Project or Scope] **Period**: [start] to [end] **Environment**: [env] **Total active issues**: [N] ## Summary [2-3 sentences: what is the overall health picture?] ## Issue Groups ### Group 1: [Root Cause Label] | Attribute | Value | |----------------|--------------------------| | Issues | N | | Total events | N | | Affected users | N | | First seen | YYYY-MM-DD | | Key file | path/to/file.py:line | **Root cause**: [One paragraph. Specific, evidence-based. Point to file and line.] **Suggested investigation**: [One or two concrete next steps.] --- [Repeat for each group] ## Out of Scope [List issues explicitly excluded and why. Example: "404s on /static/ excluded - expected behavior for SPA asset versioning."]
To fork this skill for a different MCP:
cp -r examples/skills/mcp-integration-reference examples/skills/<your-skill>/references/sentry-mcp.md to references/<your-mcp>.mdallowed-tools in the frontmatter to match your MCP tool namesThe pattern works for any MCP that has non-obvious query behavior: Datadog, PagerDuty, Linear, Jira, Posthog, Mixpanel, etc.
Other measured skills in the registry, with their headline benchmark lift.