mcp-sdk-python-bootstrapper

Solid

Bootstrap MCP server with Python SDK, transport configuration, tool/resource handlers, and proper project structure.

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# MCP SDK Python Bootstrapper Bootstrap a complete MCP server using the Python SDK with proper project structure. ## Capabilities - Generate Python MCP server project structure - Create tool and resource handlers - Configure stdio/SSE transport layers - Set up proper typing with Pydantic - Implement error handling patterns - Configure Poetry/pip project ## Usage Invoke this skill when you need to: - Bootstrap a new MCP server in Python - Create tools and resources for AI consumption - Set up MCP transport layer - Implement MCP protocol handlers ## Inputs | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | projectName | string | Yes | Name of the MCP server project | | description | string | Yes | Description of the server | | tools | array | No | List of tools to implement | | resources | array | No | List of resources to expose | | transport | string | No | Transport type: stdio, sse (default: stdio) | ### Tool Structure ```json { "tools": [ { "name": "search_files", "description": "Search for files matching a pattern", "parameters": { "pattern": { "type": "string", "description": "Search pattern" }, "path": { "type": "string", "description": "Base path", "default": "." } } } ] } ``` ## Output Structure ``` <projectName>/ ├── pyproject.toml ├── README.md ├── .gitignore ├── src/ │ └── <package>/ │ ├── __init__.py │ ├── __main__.py # Entry point │ ...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Integrates with

Related Skills