template-mcp-server
1
Template MCP Server is an example server built with Python and PDM. It can be configured to work with Claude Desktop and requires the `uv` tool for operation, providing a base for developing custom MCP servers.
template-mcp-server
An example MCP server developed by Python and PDM.
Usage with Claude Desktop
Add the following to claude_desktop_config.json
:
{
"mcpServers": {
"template-mcp-server": {
"command": "uvx",
"args": [
"template-mcp-server"
]
}
}
}
It requires uv
to be installed on your machine. Check the official documentation for installation guides.
Available Tools
Development
pdm install
pdm dev