home / mcp / ai developer tools mcp server
Exposes real-time AI development tool metrics and comparisons via MCP for Claude and compatible clients.
Configuration
View docs{
"mcpServers": {
"grzetich-ai-developer-tools-mcp": {
"command": "node",
"args": [
"/absolute/path/to/ai-developer-tools-mcp/src/index.js"
]
}
}
}You run an MCP server that exposes AI development tool intelligence so Claude and other assistants can answer natural-language questions about tool adoption, trends, and comparisons. This enables real-time insights without manual data wrangling, letting you ask questions like which AI coding tools are rising fastest or how two tools compare on downloads and community activity.
You connect an MCP client to the server and interact in natural language. The server provides focused tools you can invoke through conversations, such as comparing two tools, listing top-growing tools, retrieving historical growth, or filtering tools by criteria. Use it to get human-friendly summaries, growth indicators, and concrete metrics without leaving the chat.
Prerequisites: Node.js 18 or higher. A compatible MCP client such as Claude Desktop.
Step by step install and run flow:
1) Clone the project repository (replace with the actual path you use):
git clone https://github.com/grzetich/ai-developer-tools-mcp.git
cd ai-developer-tools-mcpConfigure Claude Desktop to connect to the MCP server using the standard stdio transport. Add this configuration to your Claude Desktop config file.
{
"mcpServers": {
"ai-developer-tools": {
"command": "node",
"args": ["/absolute/path/to/ai-developer-tools-mcp/src/index.js"]
}
}
}Install dependencies and start the server in a local, stdio configuration. Use the commands below exactly as shown.
npm install
# Start the MCP server in stdio mode
npm start
# Optional: run tests to verify tools
npm testCompare adoption metrics between 2-3 AI developer tools across downloads, growth, and community activity.
Return the fastest-growing AI developer tools ranked by growth rate for a given time window.
Provide historical adoption data and growth trends for a specific tool over a number of months.
Filter and sort tools by category, minimum downloads, keywords, and other criteria.