MCP Server Kickstarter
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Server Kickstartercreate a new MCP project called my-server"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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.
Related MCP server: Test MCP Server
Create and Activate a Virtual Environment
Create a virtual environment for the project:
uv venvActivate it with:
source .venv/bin/activateAdd Dependencies
Use the uv CLI to add dependencies to your project. For example, add LangChain with:
uv add langchainInstall project dependencies from the lock file:
uv syncCreate or update the dependency lock file:
uv lockRun the main Python file for your project:
uv run main.pyDebug Inspector
Use the MCP inspector CLI for debugging your server:
npx @modelcontextprotocol/inspectorInspector Configuration
Transport Type: stdio
Command: uv
Arguments:
run --directory /path-to-directory/mcp-server-kickstarter main.pyDebugging Steps
Start the Inspector
npx @modelcontextprotocol/inspector uv run main.pyClick "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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/praveen-radakirouchenane/mcp-server-kickstarter'
If you have feedback or need assistance with the MCP directory API, please join our Discord server