What problem does it solve? Building Model Context Protocol servers from scratch requires understanding tool schemas, transports, and client configuration, which slows down connecting LLMs to external APIs and services. ## Core Features & Use Cases - Python FastMCP Servers: Define tools and resources with decorators, including docstrings that guide LLM tool selection. - TypeScript MCP SDK Servers: Build stdio-based servers with the official @modelcontextprotocol/sdk package. - Client Configuration: Generate mcp_config.json entries with commands, arguments, and environment variables. - Use Case: You want Claude Desktop to query your internal database. Use this Skill to scaffold a FastMCP server exposing a query tool, configure the client, and verify it with MCP Inspector. ## Quick Start Create an MCP server in Python with FastMCP that exposes a tool for querying my REST API and show me the client configuration.