mcp-dev-tools
Integrates AI into software development workflows by providing three MCP tools: code review checklists, conventional commit message generation, and API documentation formatting from docstrings. Connects to Claude Desktop and any MCP-compatible client.
README
mcp-dev-tools
An MCP (Model Context Protocol) server that integrates AI into software development workflows. Connects directly to Claude Desktop and any MCP-compatible client.
What It Does
This server exposes 3 AI-powered development tools via the Model Context Protocol:
| Tool | Description |
|---|---|
code_review_checklist |
Generates a structured review checklist tailored to Python, TypeScript, or C# |
generate_commit_message |
Produces a Conventional Commits-formatted message from a plain diff summary |
api_docs_formatter |
Reformats raw docstrings into clean, structured Markdown API documentation |
Once connected to Claude Desktop, you can invoke these tools in natural language:
- "Give me a Python code review checklist"
- "Generate a commit message for: added JWT auth to the login endpoint"
- "Format the docs for my validate_patient_record function"
Architecture
┌─────────────────────┐ JSON-RPC / stdio ┌──────────────────────────┐
│ Claude Desktop │ ◄─────────────────────── │ mcp-dev-tools server │
│ (MCP Client) │ ──────────────────────── │ (Python / FastMCP) │
└─────────────────────┘ │ │
│ * code_review_checklist │
OR │ * generate_commit_msg │
│ * api_docs_formatter │
┌─────────────────────┐ └──────────────────────────┘
│ Your Python Client │ ◄── stdio_client() ──────────────────┘
│ (client.py) │
└─────────────────────┘
Getting Started
1. Install dependencies
git clone https://github.com/SKeval/mcp-dev-tools
cd mcp-dev-tools
pip install -r requirements.txt
2. Test with the included client
python client.py
Expected output:
mcp-dev-tools connected. Available tools:
* code_review_checklist
* generate_commit_message
* api_docs_formatter
...
All 3 tools working. mcp-dev-tools is ready.
3. Connect to Claude Desktop
Add this to your Claude Desktop config file:
Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mcp-dev-tools": {
"command": "python",
"args": ["/absolute/path/to/mcp-dev-tools/server.py"]
}
}
}
Restart Claude Desktop. You'll see mcp-dev-tools appear in the tools panel.
Tool Reference
code_review_checklist
Returns a structured checklist for code reviews.
| Parameter | Type | Default | Description |
|---|---|---|---|
language |
str |
"general" |
python, typescript, csharp, or general |
include_general |
bool |
True |
Appends general checklist after language-specific |
Example:
result = await session.call_tool(
"code_review_checklist",
{"language": "python", "include_general": True}
)
generate_commit_message
Generates a Conventional Commits message.
| Parameter | Type | Default | Description |
|---|---|---|---|
diff_summary |
str |
required | Plain-English description of the change |
commit_type |
str |
"feat" |
feat, fix, docs, refactor, test, chore, etc. |
scope |
str |
"" |
Component name e.g. auth, api, fhir |
breaking_change |
bool |
False |
Adds ! marker and BREAKING CHANGE footer |
Example output:
feat(fhir): added FHIR resource validation to the patient data ingestion pipeline
Type: feat — A new feature
Scope: fhir
api_docs_formatter
Converts a raw docstring into structured Markdown API docs.
| Parameter | Type | Default | Description |
|---|---|---|---|
function_name |
str |
required | Name of the function |
raw_docstring |
str |
required | Existing description or raw docstring |
language |
str |
"python" |
python, typescript, or csharp |
include_example |
bool |
True |
Adds a usage example section |
Why MCP?
Traditional AI integrations require custom one-off code for every tool connection. MCP standardizes this — build the server once, connect it to any MCP-compatible client. This is the same pattern applicable to clinical software development: a single MCP server can expose AI-assisted code review, compliance checking, and documentation generation across an entire development team's workflow.
License
MIT License
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。