Python Package to provide assistance in generating MCP server project.
Project description
MCP CodeGen
MCP CodeGen is a powerful code generation tool designed to create Model Context Protocol (MCP) server implementations from YAML specifications. This tool automates the process of creating structured MCP tools and server code, making it easier to maintain and scale MCP-based applications.
Overview
MCP CodeGen takes a YAML configuration file (mcp_cfg.yaml) that defines MCP tools and their specifications, and generates:
- Individual tool implementation files
- MCP server configuration
- Required project structure
YAML Specification Format
The YAML configuration should follow this structure:
mcp_server:
mcp_transport_mode: "sse" ## it can be stdio, sse or streamable-http
mcp_tools:
- tool_name: <tool name>
tool_description: <tool description>
tool_args:
- arg_variable: <argument variable name>
arg_type: <data type>
arg_description: <argument description>
Example Configuration
mcp_server:
mcp_transport_mode: "sse"
mcp_tools:
- tool_name: add
tool_description: "sum of two numbers"
tool_args:
- arg_variable: "num_a"
arg_type: int
arg_description: "first number"
- arg_variable: "num_b"
arg_type: int
arg_description: "2nd number"
Generated Project Structure
The tool generates the following project structure:
project_root/
├── tools/ # Directory containing tool implementations
│ └── <tool_name>_tool.py
├── mcp_server.py # MCP server configuration
├── requirements.txt # Project dependencies
└── mcp_cfg.yaml # Tool configuration file
Generated Files
-
Tool Implementation Files (
tools/<tool_name>_tool.py):- Auto-generated tool modules with proper typing and documentation
- Function signatures based on YAML specifications
- Docstrings with descriptions and parameter documentation
-
MCP Server (
mcp_server.py):- FastMCP server configuration
- Automatic tool registration
- Proper imports of all tool modules
Usage
-
Create your
mcp_cfg.yamlfile in the project root directory with your tool specifications following the format shown above -
Install the package:
pip install pyyaml mcp-codegen
-
Run the code generator in your project directory (where mcp_cfg.yaml is located):
mcp-proj-build
-
The tool will:
- Validate your YAML configuration
- Create the project structure
- Generate tool implementation files
- Create the MCP server configuration
-
Implement the tool logic in the generated tool files
-
Run your MCP server
Requirements
The project requires:
- Python 3.9+
- pyyaml
- MCP
mcp-codegen will create requirements.txt with required dependencies.
Generated Code Examples
Tool Implementation Example
def add(num_a: int, num_b: int) -> Any:
"""
sum of two numbers
Parameters
----------
num_a (int): first number
num_b (int): second number
Returns
-------
Any
Result of the tool.
"""
# TODO: implement tool logic
raise NotImplementedError # Replace with you custom logic
MCP Server Configuration Example
from tools import add_tool
from mcp.server.fastmcp import FastMCP
# Create an MCP server
mcp = FastMCP("Demo")
# Register tools
mcp.add_tool(add_tool.add)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_codegen-1.0.3.tar.gz.
File metadata
- Download URL: mcp_codegen-1.0.3.tar.gz
- Upload date:
- Size: 44.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0749ae324caf1a3752b9e6908ac4b12dc62f5c2a87c0e25677c02a94fab06cb
|
|
| MD5 |
d4b463f7b8bc69ba39dea31499df272c
|
|
| BLAKE2b-256 |
c5a3a7712a36a3fc1d0431e1af0ec5e4f9d8fb2e468a49f34225720e3ea8b006
|
File details
Details for the file mcp_codegen-1.0.3-py3-none-any.whl.
File metadata
- Download URL: mcp_codegen-1.0.3-py3-none-any.whl
- Upload date:
- Size: 49.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6db09e38b4bbd6d17113c46ea072a13693e5b3ac9e35afaf04113b3b38aac0d8
|
|
| MD5 |
71dbd6b1eb2327b457dd012241a19b8b
|
|
| BLAKE2b-256 |
8f1c58c53dc5ab9a04b7bd52a19eea43d3efe3717013a37419092ea970e75e3a
|