Skip to content

Claude Code Starter Kit v1.1.0

Latest

Choose a tag to compare

@dachivadachkoria dachivadachkoria released this 08 Mar 21:09

v1.1.0 β€” MCP Server

This release makes the Claude Code Starter Kit pip-installable as an MCP server, so all commands and agents can be used from Claude Desktop, Claude Code, or any
MCP-compatible client β€” without cloning the repo.

Install

pip install claude-code-starter-kit-mcp

What's included

8 command tools β€” each maps to a slash command from the kit:
command_test, command_test_coverage, command_security_check, command_detailed_review, command_fix_bugs, command_refactor, command_docs, command_monitor

4 agent tools β€” specialized AI personas:
agent_test_engineer, agent_security_auditor, agent_code_reviewer, agent_bug_hunter

Setup

Add to your Claude config (~/.claude/settings.json for Claude Code, or claude_desktop_config.json for Claude Desktop):

{
"mcpServers": {
"claude-code-starter-kit": {
"command": "claude-code-starter-kit-mcp"
}
}
}

Changes

  • Added mcp_server.py β€” stdio MCP server that dynamically loads commands and agents from bundled markdown files
  • Added pyproject.toml β€” package metadata, entry point, and wheel configuration
  • Added GitHub Actions workflow for automated PyPI publishing on tag push