mcp-integration-reference
Installation
SKILL.md
MCP Integration Reference Pattern
This is a template skill. It shows how to structure a skill that wraps an MCP server. Replace
sentrywith your MCP server name and adapt the reference file atreferences/sentry-mcp.md.
What This Pattern Solves
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:
- Parameter semantics that differ from what the tool name implies
- Known error patterns and their root causes
- Working query examples (copy-paste, no thinking required)