Python SDK for automcp.ai - Generate Model Context Protocol servers intelligently
This package is currently a placeholder. The full SDK implementation is under active development.
For now, please visit automcp.ai for more information.
pip install amcp
automcp.ai is a tool that automatically generates MCP (Model Context Protocol) servers from OpenAPI specifications. It enables Large Language Models to interact with APIs through a standardized protocol, selecting only the most relevant endpoints based on your use cases.
- Programmatic Server Generation: Generate MCP servers from Python code
- Smart Endpoint Selection: Automatically select relevant endpoints based on use cases
- Authentication Support: Handle various authentication methods
import amcp
# Generate an MCP server from an OpenAPI spec
amcp.generate_server(
openapi_spec="path/to/openapi.yaml",
output_dir="./my-mcp-server",
use_cases=[
"Search for repositories",
"Create and manage issues",
"Review pull requests"
]
)
MIT License - see LICENSE file for details.