mcp-server-learn
A simple template for creating custom tools for Cursor IDE using Model Context Protocol (MCP).
The MCP Server Template for Cursor IDE is designed to facilitate the creation of custom tools using the Model Context Protocol. This template allows developers to create their own repositories, modify tools, and seamlessly connect them to the Cursor IDE. The server can be deployed using various methods including Heroku, Docker, or traditional Python setup, providing flexibility in deployment. The template supports both SSE and stdio transport methods, making it versatile for different use cases. Additionally, it includes environment variable configurations for customization and debugging purposes. The template is also compatible with Smithery for easy installation and management.
Features
- Flexible Deployment: Supports Heroku, Docker, and traditional Python setups.
- Transport Options: Offers both SSE and stdio transport methods.
- Environment Configurations: Customizable via environment variables.
- Integration with Cursor IDE: Easily connect and configure with Cursor IDE.
- Smithery Compatibility: Install and manage via Smithery CLI.
Usage with Different Platforms
docker
bash
# Clone the repository
git clone https://github.com/kirill-markin/weaviate-mcp-server.git
cd weaviate-mcp-server
# Create environment file
cp .env.example .env
# Build and start the server
docker compose up --build -d
# View logs
docker compose logs -f
# Check server status
docker compose ps
# Stop the server
docker compose down
traditional_python
bash
# Install uv on macOS
brew install uv
# Or install via pip (any OS)
pip install uv
# Install the package with development dependencies
uv pip install -e ".[dev]"
# Using stdio transport (default)
uv run mcp-simple-tool
# Using SSE transport on custom port
uv run mcp-simple-tool --transport sse --port 8000
# Run tests
uv run pytest -v
smithery
bash
npx -y @smithery/cli install @kirill-markin/example-mcp-server --client claude
Related MCP Servers
View all developer_tools servers →context7
by upstash
Context7 MCP provides up-to-date, version-specific documentation and code examples directly into your prompt, enhancing the capabilities of LLMs by ensuring they use the latest information.
Sequential Thinking
by modelcontextprotocol
An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process.
git-mcp
by idosal
GitMCP is a free, open-source, remote Model Context Protocol (MCP) server that transforms GitHub projects into documentation hubs, enabling AI tools to access up-to-date documentation and code.
Everything MCP Server
by modelcontextprotocol
The Everything MCP Server is a comprehensive test server designed to demonstrate the full capabilities of the Model Context Protocol (MCP). It is not intended for production use but serves as a valuable tool for developers building MCP clients.
exa-mcp-server
by exa-labs
A Model Context Protocol (MCP) server allows AI assistants to use the Exa AI Search API for real-time web searches in a secure manner.
repomix
by yamadashy
Repomix is a tool that packs your codebase into AI-friendly formats, making it easier to use with AI tools like LLMs.
mcpdoc
by langchain-ai
MCP LLMS-TXT Documentation Server provides a structured way to manage and retrieve LLM documentation using the Model Context Protocol.