A comprehensive and extensible cookiecutter template system for creating Model Context Protocol (MCP) servers with plugin architecture supporting multiple templates including RAG-enabled servers
Project description
egile-mcp-starter
A comprehensive cookiecutter template for creating Model Context Protocol (MCP) servers using the FASTMCP framework.
Features
- ๐ Modern Python Setup: Uses Poetry for dependency management and packaging
- ๐๏ธ FASTMCP Framework: Built on the efficient FASTMCP framework for MCP servers
- ๏ฟฝ Plugin Architecture: Extensible template system with multiple server types
- ๐ ๏ธ Multiple Templates: Choose from MCP, RAG, or custom templates
- ๐งช Testing Ready: Comprehensive test suite with pytest and coverage
- ๐ง Development Tools: Pre-configured with Black, Flake8, MyPy, and pre-commit hooks
- ๐ณ Docker Support: Optional Docker configuration for easy deployment
- ๐ CI/CD Ready: GitHub Actions workflows for automated testing and deployment
- ๐ Rich Documentation: Detailed README and code documentation
- ๐๏ธ Configurable: YAML-based configuration with environment variable support
Quick Start
Installation
# Install with pip (recommended)
pip install egile-mcp-starter
# Or use Docker
docker pull jpoullet2000/egile-mcp-starter
docker run -it jpoullet2000/egile-mcp-starter
# Or install from source
git clone https://github.com/jpoullet2000/egile-mcp-starter.git
cd egile-mcp-starter
poetry install
Generate a New MCP Server
# Using the installed command (default MCP template)
egile-mcp-starter
# Or if installed from source
poetry run egile-mcp-starter
# Choose a specific template
egile-mcp-starter --template rag
# List available templates
egile-mcp-starter --list-templates
# With custom project name
egile-mcp-starter --project-name "my_custom_server"
# With multiple options
egile-mcp-starter --template rag --output-dir ./my-projects --project-name "my_rag_server" --verbose
CLI Options
The egile-mcp-starter command supports the following options:
| Option | Short | Description | Example |
|---|---|---|---|
--template |
-t |
Choose the template to use | --template rag |
--project-name |
Override the project name (affects directory and package name) | --project-name "my_server" |
|
--output-dir |
-o |
Output directory for the generated project | --output-dir ./projects |
--list-templates |
List all available templates and exit | --list-templates |
|
--verbose |
-v |
Print detailed status information | --verbose |
--no-input |
Don't prompt for parameters, use defaults | --no-input |
|
--config-file |
Path to cookiecutter config file | --config-file config.yaml |
|
--default-config |
Use default values for all template variables | --default-config |
|
--help |
Show help message and exit | --help |
Examples:
# Generate with custom name and template
egile-mcp-starter --template rag --project-name "my_awesome_rag_server"
# Non-interactive generation for CI/CD
egile-mcp-starter --no-input --project-name "test_server" --output-dir ./build
# List available templates
egile-mcp-starter --list-templates
Available Templates
The egile-mcp-starter uses a plugin architecture that supports multiple project templates. Choose the template that best fits your needs:
๐ง MCP Template (default)
The standard MCP server template with comprehensive features:
- Server Types: Tools, resources, prompts, or full-featured servers
- FASTMCP Integration: Built on the efficient FASTMCP framework
- Development Ready: Testing, linting, CI/CD, Docker support
- Flexible Configuration: YAML-based config with environment variables
egile-mcp-starter --template mcp
๐ง RAG Template
Advanced RAG-enabled MCP server with vector search capabilities:
- Vector Databases: Chroma, Pinecone, Weaviate, Qdrant, FAISS support
- Embedding Models: Sentence Transformers, OpenAI, Cohere
- Document Processing: PDF, DOCX, Excel, text files
- Web Scraping: Optional web page scraping and indexing
- Chunking Strategies: Recursive, semantic, fixed-size
- Reranking: Optional result reranking for better relevance
- MCP Tools:
ingest_documents,search_documents,scrape_and_index - MCP Resources: Document listing, metadata access, chunk search
egile-mcp-starter --template rag
๐ Plugin System Features
- Extensible: Easy to add new templates without modifying core code
- External Plugins: Third-party templates via entry points
- Template Hooks: Pre/post-generation customization
- Backward Compatible: Original functionality preserved
# List all available templates
egile-mcp-starter --list-templates
# Generate with specific template and options
egile-mcp-starter --template rag --output-dir ./my-projects --project-name "my_rag_server" --verbose
Generated Project Structure
The generated project will have this structure:
my-mcp-server/
โโโ src/
โ โโโ my_mcp_server/
โ โ โโโ __init__.py
โ โ โโโ server.py # Main MCP server implementation
โ โ โโโ config.py # Configuration management
โ โ โโโ tools/ # Tool implementations (if enabled)
โ โ โโโ resources/ # Resource handlers (if enabled)
โ โ โโโ prompts/ # Prompt templates (if enabled)
โ โ โโโ utils.py # Utility functions
โ โโโ main.py # Entry point
โโโ tests/ # Comprehensive test suite
โโโ pyproject.toml # Poetry configuration
โโโ README.md # Project documentation
โโโ Dockerfile # Docker configuration (optional)
โโโ .github/workflows/ # CI/CD workflows (optional)
Extending the Plugin System
Adding Custom Templates
The plugin architecture makes it easy to add new templates:
- Create a Template Plugin:
from egile_mcp_starter import TemplatePlugin
from pathlib import Path
class MyTemplatePlugin(TemplatePlugin):
def __init__(self):
super().__init__(
name="my_template",
description="My custom MCP server template",
version="1.0.0"
)
def get_template_path(self) -> Path:
return Path(__file__).parent / "my_template"
def get_default_context(self) -> dict:
return {"project_name": "My Custom Server"}
- Register the Plugin:
from egile_mcp_starter import get_registry
registry = get_registry()
registry.register(MyTemplatePlugin())
- External Plugin Distribution:
# In your package's setup.py or pyproject.toml
entry_points = {
'egile_mcp_starter.templates': [
'my_template = my_package.my_template:MyTemplatePlugin',
],
}
Template Hooks
Customize the generation process with hooks:
- Pre-generation: Modify context, validate inputs, compute dependencies
- Post-generation: Initialize databases, download models, set up git repos
Development
Setting up Development Environment
# Clone the repository
git clone https://github.com/jpoullet2000/egile-mcp-starter.git
cd egile-mcp-starter
# Install dependencies
poetry install --with dev
# Install pre-commit hooks
poetry run pre-commit install
Running Tests
# Run all tests
poetry run pytest
# Run with coverage
poetry run pytest --cov=egile_mcp_starter --cov-report=html
# Run specific tests
poetry run pytest tests/test_generator.py -v
Code Quality
# Format code
poetry run black .
# Check linting
poetry run flake8 egile_mcp_starter tests
# Type checking
poetry run mypy egile_mcp_starter
# Run all pre-commit checks
poetry run pre-commit run --all-files
Documentation
For detailed information about templates and the plugin system, see:
- Templates Guide: Comprehensive documentation on available templates, the plugin architecture, and how to create custom templates
- Configuration: Detailed configuration options for each template
- API Reference: Complete API documentation
Contributing
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Make your changes
- Run tests (
poetry run pytest) - Run code quality checks (
poetry run pre-commit run --all-files) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
- ๐ง Email: jpoullet2000@gmail.com
- ๐ Issues: GitHub Issues
- ๐ MCP Documentation: Model Context Protocol
- ๐ FASTMCP: FASTMCP Framework
Acknowledgments
- FASTMCP - The amazing framework that powers the generated servers
- Model Context Protocol - The protocol specification
- Cookiecutter - The templating engine
Built with โค๏ธ to accelerate MCP server development
Project details
Release history Release notifications | RSS feed
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 egile_mcp_starter-0.2.0.tar.gz.
File metadata
- Download URL: egile_mcp_starter-0.2.0.tar.gz
- Upload date:
- Size: 47.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.11.13 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd415459848a89d11bbffff5611ab0cbebb94d307c284b7f7e1ce9686d037c58
|
|
| MD5 |
b8a0ccab23c30bf8dcc51a86637b3c9a
|
|
| BLAKE2b-256 |
a7f1b188c6a05136d34199ca56558d9bc0c0eba4c640ab20fceaa4db40e6b6dd
|
File details
Details for the file egile_mcp_starter-0.2.0-py3-none-any.whl.
File metadata
- Download URL: egile_mcp_starter-0.2.0-py3-none-any.whl
- Upload date:
- Size: 66.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.11.13 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
884cef6f55e76b5ba149c4473ef9481e7a1f4c934e9b05ff06e3a6679637ee3a
|
|
| MD5 |
ee6ed27041fd55f325109398f78303fb
|
|
| BLAKE2b-256 |
8f92b73d9c8cca6ee14d1917f5d378e748a9e4dc99d58c388e4e7be805d395a3
|