Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From python
Generate a complete MCP server project in Python with tools, resources, and proper configuration
npx claudepluginhub wesleyegberto/software-engineering-skills --plugin pythonHow this command is triggered — by the user, by Claude, or both
Slash command
/python:mcp-server-generatorFiles this command reads when invoked
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Generate Python MCP Server Create a complete Model Context Protocol (MCP) server in Python with the following specifications: ## Requirements 1. **Project Structure**: Create a new Python project with proper structure using uv 2. **Dependencies**: Include mcp[cli] package with uv 3. **Transport Type**: Choose between stdio (for local) or streamable-http (for remote) 4. **Tools**: Create at least one useful tool with proper type hints 5. **Error Handling**: Include comprehensive error handling and validation ## Implementation Details ### Project Setup - Initialize with `uv init projec...
Share bugs, ideas, or general feedback.
Create a complete Model Context Protocol (MCP) server in Python with the following specifications:
uv init project-nameuv add "mcp[cli]"server.py).gitignore for Python projectsif __name__ == "__main__"FastMCP class from mcp.server.fastmcp@mcp.tool() decorator on functions@mcp.resource() decorator"resource://{param}"@mcp.prompt() decoratorFor stdio Servers:
uv run mcp dev server.pyuv run mcp install server.pyFor HTTP Servers:
stateless_http=Truejson_response=Truepython server.py or uv run server.pypython server.py then connect to http://localhost:PORT/mcpuv run mcp dev server.pyuv run mcp install server.pyGenerate a complete, production-ready MCP server with type safety, proper error handling, and comprehensive documentation.