PluginBench
MCP Server
Active

pypreset MCP Server

io.github.KaiErikNiermann/pypreset

What is the pypreset MCP server?

Scaffold Python projects from YAML presets, augment existing projects with CI/tests.

How to install pypreset

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "pypreset": {
      "command": "uvx",
      "args": [
        "pypreset",
        "--from",
        "pypreset[mcp]"
      ]
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "pypreset": {
      "command": "uvx",
      "args": [
        "pypreset",
        "--from",
        "pypreset[mcp]"
      ]
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "pypreset": {
      "command": "uvx",
      "args": [
        "pypreset",
        "--from",
        "pypreset[mcp]"
      ]
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "pypreset": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "pypreset",
        "--from",
        "pypreset[mcp]"
      ]
    }
  }
}
Claude Code
claude mcp add pypreset -- uvx pypreset --from pypreset[mcp]

Related MCP servers

MCP server wrapping the Taskwarrior CLI for structured, project-scoped task management.

0
Rust
View repository →