MCP Server Kickstarter
A CLI tool to scaffold and manage new MCP-compatible server projects with uv, including virtual environment setup, dependency management, and VS Code integration.
README
MCP Server Kickstarter
Create a New Project
Use the uv CLI to initialize a new project:
uv init <<project-name>>
This command creates a new MCP-compatible server project in the current directory.
Create and Activate a Virtual Environment
Create a virtual environment for the project:
uv venv
Activate it with:
source .venv/bin/activate
Add Dependencies
Use the uv CLI to add dependencies to your project. For example, add LangChain with:
uv add langchain
Install project dependencies from the lock file:
uv sync
Create or update the dependency lock file:
uv lock
Run the main Python file for your project:
uv run main.py
Debug Inspector
Use the MCP inspector CLI for debugging your server:
npx @modelcontextprotocol/inspector
Inspector Configuration
Transport Type: stdio
Command: uv
Arguments:
run --directory /path-to-directory/mcp-server-kickstarter main.py
Debugging Steps
-
Start the Inspector
npx @modelcontextprotocol/inspector uv run main.py -
Click "Connect"
- In the inspector web interface, click the Connect button
- This establishes a connection to your MCP server
-
List Available Tools
- Click the "List Tools" button in the inspector
- This displays all tools exposed by your server in JSON format
- Each tool shows its name, description, and input schema
-
Test Tools
- Select a tool from the list
- Enter the required parameters
- Click "Call Tool" to execute it
- View the response in the output panel
Register Server in VS Code
To connect your MCP server in VS Code, add it to your mcp.json file:
Workspace or Project Configuration
Add the following server configuration to your mcp.json:
{
"servers": {
"get_local_document": {
"type": "stdio",
"command": "uv",
"args": [
"run",
"--directory",
"project-folder/mcp-server-kickstarter",
"fastmcp_mock_db.py"
]
}
}
}
Configuration Breakdown
type:stdio- Uses standard input/output transportcommand:uv- Uses the uv package managerargs:run- Executes the Python file--directory- Specifies the project directory pathproject-folder/mcp-server-kickstarter- Path to your MCP server folderfastmcp_mock_db.py- The server file to run
After adding this configuration, the server will be available in VS Code's MCP tools and can be used in Copilot.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.