MCP server exposing Claude Code Starter Kit commands and agents as tools
Project description
๐ค Claude Code Starter Kit
A production-ready boilerplate for integrating Claude Code into your development workflow. Automate testing, security scanning, code review, and routine maintenance tasks.
๐ฆ MCP Server
All commands and agents in this kit are also available as an MCP (Model Context Protocol) server, making them usable from Claude Desktop, Claude Code, or any MCP-compatible client.
Install
pip install claude-code-starter-kit-mcp
Setup in Claude Code
Add to your project's .claude/settings.json (or ~/.claude/settings.json for global use):
{
"mcpServers": {
"claude-code-starter-kit": {
"command": "claude-code-starter-kit-mcp"
}
}
}
Setup in Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"claude-code-starter-kit": {
"command": "claude-code-starter-kit-mcp"
}
}
}
Available MCP Tools
| Tool | Maps to |
|---|---|
command_test |
/test |
command_test_coverage |
/test-coverage |
command_security_check |
/security-check |
command_detailed_review |
/detailed-review |
command_fix_bugs |
/fix-bugs |
command_refactor |
/refactor |
command_docs |
/docs |
command_monitor |
/monitor |
agent_test_engineer |
test-engineer agent |
agent_security_auditor |
security-auditor agent |
agent_code_reviewer |
code-reviewer agent |
agent_bug_hunter |
bug-hunter agent |
All tools accept an optional arguments string (e.g. a file path or flags like --changed).
PyPI Auto-publish
Releases to PyPI are automated via GitHub Actions. Push a version tag to trigger a publish:
git tag v0.2.0
git push origin v0.2.0
Requires a PyPI Trusted Publisher configured for the pypi environment in your repository settings.
๐ฏ What This Kit Provides
| Feature | Description |
|---|---|
| Automated Testing | Generate unit tests for new code automatically |
| Security Scanning | Track vulnerabilities and get fix suggestions |
| Code Review | AI-powered review on every PR |
| Bug Detection | Monitor repo for common issues and anti-patterns |
| Documentation | Auto-generate and update docs |
๐ Quick Start
1. Copy to Your Project
# Clone this repo
git clone https://github.com/dachivadachkoria/claude-code-starter-kit.git
# Copy the .claude directory to your project
cp -r claude-code-starter-kit/.claude your-project/
cp claude-code-starter-kit/CLAUDE.md your-project/
2. Customize CLAUDE.md
Edit CLAUDE.md in your project root to match your:
- Tech stack
- Testing conventions
- Code style
- Project structure
3. Start Using
cd your-project
claude
# Now use the commands:
/test src/myfile.py # Generate tests
/security-check # Check vulnerabilities
/detailed-review # Code review
/fix-bugs # Auto-fix common issues
๐ Repository Structure
.claude/
โโโ settings.json # Claude Code configuration
โโโ commands/ # Slash commands
โ โโโ test.md # /test - Generate unit tests
โ โโโ test-coverage.md # /test-coverage - Coverage analysis
โ โโโ security-check.md # /security-check - Vulnerability check
โ โโโ detailed-review.md # /detailed-review - Code review
โ โโโ fix-bugs.md # /fix-bugs - Auto-fix issues
โ โโโ docs.md # /docs - Generate documentation
โ โโโ refactor.md # /refactor - Safe refactoring
โโโ agents/ # Specialized AI agents
โ โโโ test-engineer.md # Testing specialist
โ โโโ security-auditor.md # Security expert
โ โโโ code-reviewer.md # Review specialist
โ โโโ bug-hunter.md # Bug detection expert
โโโ knowledge-base/ # Project-specific guidelines
โโโ testing-guide.md
โโโ security-checklist.md
CLAUDE.md # Project context (customize this!)
.github/
โโโ workflows/
โโโ claude-review.yml # Optional: CI integration
๐ง Available Commands
Testing Commands
| Command | Description | Example |
|---|---|---|
/test <file> |
Generate tests for a file | /test src/auth.py |
/test --changed |
Test all changed files | /test --changed |
/test-coverage |
Analyze and improve coverage | /test-coverage |
Security Commands
| Command | Description | Example |
|---|---|---|
/security-check |
Full security audit | /security-check |
/security-check --deps |
Check dependencies only | /security-check --deps |
/security-fix |
Auto-fix vulnerabilities | /security-fix |
Code Quality Commands
| Command | Description | Example |
|---|---|---|
/detailed-review |
Review staged changes | /detailed-review |
/detailed-review <file> |
Review specific file | /detailed-review src/api.py |
/fix-bugs |
Detect and fix issues | /fix-bugs |
/refactor <file> |
Safe refactoring | /refactor src/legacy.py |
Documentation Commands
| Command | Description | Example |
|---|---|---|
/docs |
Generate/update docs | /docs |
/docs <file> |
Document specific file | /docs src/utils.py |
๐ก Built-in Commands
Claude Code has excellent built-in commands you should know:
/security-review- AI-powered security scanning/review- Code review/init- Initialize project with CLAUDE.md/compact- Compress context when running low
๐ก๏ธ Safety Guidelines
What Claude Code CAN Do Safely
โ
Generate and run tests
โ
Analyze code for vulnerabilities
โ
Suggest fixes with explanations
โ
Create documentation
โ
Refactor with your approval
What Requires Your Review
โ ๏ธ Any changes to authentication/authorization
โ ๏ธ Database migrations
โ ๏ธ Environment/config changes
โ ๏ธ Dependency updates
โ ๏ธ Production deployment scripts
Best Practices
- Review before commit - Always review generated code
- Use branches - Let Claude work on feature branches
- Incremental changes - Small, focused tasks work best
- Test first - Run tests before accepting changes
- Version control - Commit frequently, revert if needed
๐ Language-Specific Setup
Python
# Add to your CLAUDE.md
## Testing
- Framework: pytest
- Run: `pytest tests/ -v`
- Coverage: `pytest --cov=src --cov-report=html`
## Style
- Formatter: black, isort
- Linter: ruff or flake8
- Types: mypy
JavaScript/TypeScript
# Add to your CLAUDE.md
## Testing
- Framework: jest or vitest
- Run: `npm test`
- Coverage: `npm test -- --coverage`
## Style
- Formatter: prettier
- Linter: eslint
- Types: TypeScript strict mode
Go
# Add to your CLAUDE.md
## Testing
- Framework: testing + testify
- Run: `go test ./...`
- Coverage: `go test -coverprofile=coverage.out ./...`
## Style
- Formatter: gofmt, goimports
- Linter: golangci-lint
๐ค Contributing
Contributions welcome! Please read CONTRIBUTING.md for guidelines.
Ideas for Contributions
- More language-specific templates
- Framework-specific commands (Django, React, etc.)
- CI/CD integration examples
- IDE extension recommendations
- Video tutorials
๐ Resources
๐ License
MIT License - feel free to use in personal and commercial projects.
Made with ๐ค by the community, for the community
Star โญ this repo if you find it useful!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file claude_code_starter_kit_mcp-0.1.0.tar.gz.
File metadata
- Download URL: claude_code_starter_kit_mcp-0.1.0.tar.gz
- Upload date:
- Size: 36.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63f59c9bec6706ea8c805cdea86a4dc4ea3f5900857f6a1f442676c8fca3e46b
|
|
| MD5 |
28b943640c40882050cae8be5a47691b
|
|
| BLAKE2b-256 |
9177d2d9723925398af4ac7436034aff1bdc7e7fb1253536d60ef396097c88ba
|
Provenance
The following attestation bundles were made for claude_code_starter_kit_mcp-0.1.0.tar.gz:
Publisher:
publish.yml on dachivadachkoria/claude-code-starter-kit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
claude_code_starter_kit_mcp-0.1.0.tar.gz -
Subject digest:
63f59c9bec6706ea8c805cdea86a4dc4ea3f5900857f6a1f442676c8fca3e46b - Sigstore transparency entry: 1061515248
- Sigstore integration time:
-
Permalink:
dachivadachkoria/claude-code-starter-kit@8866dff207a3050b8ac66ae5648b7a42d0ea6f5a -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/dachivadachkoria
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@8866dff207a3050b8ac66ae5648b7a42d0ea6f5a -
Trigger Event:
push
-
Statement type:
File details
Details for the file claude_code_starter_kit_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: claude_code_starter_kit_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 34.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f684e52535256e576639b768db63f3bea16836b34f7e53e2ad549184d2c7d088
|
|
| MD5 |
b1295903a2cc17056c52cb78c7e76e31
|
|
| BLAKE2b-256 |
059b42bb6954ee601e14c9d6bf479781b65b37a0617cab899b60d31e9ea674b3
|
Provenance
The following attestation bundles were made for claude_code_starter_kit_mcp-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on dachivadachkoria/claude-code-starter-kit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
claude_code_starter_kit_mcp-0.1.0-py3-none-any.whl -
Subject digest:
f684e52535256e576639b768db63f3bea16836b34f7e53e2ad549184d2c7d088 - Sigstore transparency entry: 1061515306
- Sigstore integration time:
-
Permalink:
dachivadachkoria/claude-code-starter-kit@8866dff207a3050b8ac66ae5648b7a42d0ea6f5a -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/dachivadachkoria
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@8866dff207a3050b8ac66ae5648b7a42d0ea6f5a -
Trigger Event:
push
-
Statement type: