mcp-server-development
MCP Server Development
Quick start
- Treat an MCP server as an AI-user interface (outcomes), not an endpoint wrapper.
- Keep the server small: one bounded context, ~5–15 tools max.
- Design tool contracts first: names, descriptions, flat input schemas, concise outputs.
- Implement with an SDK (Python or TypeScript), validate inputs, and return structured errors.
- Test for correctness, safety, and token efficiency.
Workflow
- Define the server’s bounded context and user outcomes (see
references/quick-reference.md). - Draft tool contracts (names, descriptions, schemas, outputs) (see
references/tool-design.md). - Choose an implementation library and transport (see
references/python-libraries.mdorreferences/typescript-libraries.md). - Implement validation, errors, and pagination conventions (see
references/protocol-and-schemas.md). - Add security guardrails (see
references/security.md) and observability (seereferences/observability.md). - Add tests (see
references/testing.md) and set a versioning policy (seereferences/versioning.md).
More from bradsjm/skills
development
Cross-language software development workflow emphasizing type safety, root-cause fixes, clear design, and rigorous validation (format/lint/typecheck/tests) for planning, implementing, debugging, and refactoring.
4microsoft-docs
Query official Microsoft documentation to understand concepts, find tutorials, and learn how services work. Use for Azure, .NET, Microsoft 365, Windows, Power Platform, and all Microsoft technologies. Get accurate, current information from learn.microsoft.com and other official Microsoft websites—architecture overviews, quickstarts, configuration guides, limits, and best practices.
3web-design-guidelines
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".
3microsoft-code-reference
Look up Microsoft API references, find working code samples, and verify SDK code is correct. Use when working with Azure SDKs, .NET libraries, or Microsoft APIs—to find the right method, check parameters, get working examples, or troubleshoot errors. Catches hallucinated methods, wrong signatures, and deprecated patterns by querying official docs.
3vercel-react-best-practices
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
3