MCP server that teaches any AI agent the AIDE methodology via progressive disclosure
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-aidemd-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server that teaches any AI agent the AIDE methodology via progressive disclosure
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
An open-source AI agent that brings the power of Gemini directly into your terminal.
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
MCP Security Weekly
Get CVE alerts and security updates for io.github.aidemd-mcp/server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server that brings intent-driven development to any AI-powered IDE.
Manage .aide spec files that live next to your code — the domain context
that architects plan from, implementors build from, and QA validates against.
aide_init — wires methodology docs, pipeline commands, and this MCP server into your project in a single guided flowaide_scaffold handles the .aide / intent.aide rename rules so you never create conflicting specsaide_validate — detects orphaned specs, missing descriptions, broken links, and naming conflicts before they cause driftaide_inspect — returns JSDoc, signatures, and kind for named symbols without opening files, giving agents Tier 2 progressive disclosure for codeaide_upgrade — compares your project's AIDE methodology artifacts against canonical versions and writes updates per-categoryThe fastest path is a single npx command that wires everything up automatically:
npx @aidemd-mcp/server@latest init
This command:
.mcp.json (creates the file or skips the entry if already present)/aide:init slash command to .claude/commands/aide/init.md (skips if exists)aide-tree launcher to .aide/bin/aide-tree.mjs (skips if exists)All operations are idempotent — safe to re-run at any time.
After running, open Claude Code and run /aide:init to complete setup.
If you use a client other than Claude Code, or prefer to configure manually, add the server entry to your client's MCP config file.
claude mcp add aide npx -- -y @aidemd-mcp/server@latest
Or add to your project's .mcp.json:
{
"mcpServers": {
"aide": {
"command": "npx",
"args": ["-y", "@aidemd-mcp/server@latest"]
}
}
}
[!NOTE] The Quick Start command above handles this automatically for Claude Code users.
Config file locations:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"aide": {
"command": "npx",
"args": ["-y", "@aidemd-mcp/server@latest"]
}
}
}
[!NOTE] Claude Desktop does not inherit the terminal PATH. If you use nvm or Homebrew to manage Node,
npxmay not be found. Runwhich npxin your terminal to get the absolute path and replace"npx"with it in the config above.
Claude Desktop requires a full quit-and-reopen after any config change.
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"aide": {
"command": "npx",
"args": ["-y", "@aidemd-mcp/server@latest"]
}
}
}
Add to .vscode/mcp.json:
{
"servers": {
"aide": {
"com
... [View full README on GitHub](https://github.com/aidemd-mcp/server#readme)