loading…
Search for a command to run...
loading…
Dependency Updater AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Dependency Updater AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
MCP server for dependency updater ai mcp operations
Dependency Updater Ai MCP provides AI-powered tools via the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
check_outdated |
Parse a dependency manifest (requirements.txt, package.json) and identify outdat |
suggest_updates |
Suggest dependency updates with a chosen strategy: patch (safest), minor, or maj |
check_vulnerabilities |
Check a comma-separated list of 'package==version' for known vulnerabilities. |
generate_lockfile |
Generate a deterministic lockfile-style output with pinned versions and integrit |
pip install meok-dependency-updater-ai-mcp
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"dependency-updater-ai": {
"command": "python",
"args": ["-m", "meok_dependency_updater_ai_mcp.server"]
}
}
}
from mcp.server.fastmcp import FastMCP
# This server exposes 4 tool(s) via MCP
# See server.py for full implementation
MIT © MEOK AI Labs
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"dependency-updater-ai-mcp": {
"command": "npx",
"args": []
}
}
}