ai2dev-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ai2dev-mcpDesign a simple note-taking app with offline sync."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ai2dev-mcp
An MCP server that a frontend can talk to in order to design software projects the same way AI2DEV does: draft a design document with an LLM, refine it based on feedback, answer follow-up questions, and finally hand the finished document to the AI2DEV API to create the project.
Tools exposed
Tool | What it does |
| Calls the LLM to draft a structured markdown design document from a project name, requirements, and optional audience/constraints. |
| Calls the LLM to revise an existing design document based on feedback, keeping its structure. |
| Calls the LLM to answer any question, optionally grounded in supplied context (e.g. the current design document). |
| Calls the AI2DEV API to create a project from a finalized design document. |
Related MCP server: Lockstep Core
Setup
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
cp .env.example .env # fill in ANTHROPIC_API_KEY and AI2DEV_API_KEYRequired environment variables:
ANTHROPIC_API_KEY— used by the LLM tools (design doc generation/refinement, Q&A).ANTHROPIC_MODEL— defaults toclaude-opus-4-8.AI2DEV_API_BASE_URL— base URL of the AI2DEV API (defaults to a placeholder; set to your real endpoint).AI2DEV_API_KEY— bearer token for the AI2DEV API.
Running
As a stdio MCP server (what most MCP clients/frontends expect):
python -m ai2dev_mcp.server
# or, after `pip install -e .`
ai2dev-mcp-serverFor local interactive testing with the MCP Inspector:
mcp dev src/ai2dev_mcp/server.pyConnecting a frontend / MCP client
Point your MCP client at the command above and pass the environment variables
through its env config, e.g. for a JSON-based MCP client config:
{
"mcpServers": {
"ai2dev-design": {
"command": "ai2dev-mcp-server",
"env": {
"ANTHROPIC_API_KEY": "sk-ant-...",
"AI2DEV_API_BASE_URL": "https://api.ai2dev.example.com",
"AI2DEV_API_KEY": "..."
}
}
}
}Tests
pytestProject layout
src/ai2dev_mcp/
config.py # env-driven settings
llm.py # Anthropic-backed design doc generation/refinement/Q&A
ai2dev_client.py # HTTP client for the AI2DEV project-creation API
server.py # FastMCP server wiring the tools together
tests/
test_server.pyMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dorthyuser/mcp-trial-python'
If you have feedback or need assistance with the MCP directory API, please join our Discord server