A Model Context Protocol (MCP) server that delivers curated documentation, quickstart commands, and stack guidance for modern full stack web development. Get instant access to setup instructions for popular frameworks, deployment checklists, and personalized stack recommendationsβall through your MCP-enabled AI assistant.
- Tool Catalog - Browse 20+ curated web development tools organized by category (runtimes, frameworks, UI libraries, databases, deployment platforms, etc.)
- Documentation Lookup - Fetch official docs, summaries, and CLI install commands for any tool in the catalog
- Framework Quickstart - Get ready-to-run scaffold commands for Next.js, SvelteKit, Remix, and Nuxt across npm, pnpm, yarn, and bun
- Stack Recommendations - Receive opinionated full-stack combinations tailored to your project type, experience level, and realtime requirements
- Deployment Checklists - Get step-by-step deployment guides for Vercel, Netlify, and Cloudflare Pages
The server exposes the following MCP tools:
list_tool_categories- List available categories and their tool membersfetch_tool_reference- Get documentation, install commands, and optional status check for a specific toolframework_quickstart- Generate starter commands for a framework with your preferred package managerrecommend_stack- Get a personalized stack recommendation based on project descriptiondeployment_checklist- Get deployment steps and notes for a hosting provider
Before you begin, ensure you have the following installed:
- Python 3.8+ - Download Python
- pip - Usually comes with Python
- An MCP Client - Such as:
- Claude Desktop (recommended)
- Any MCP-compatible client that supports stdio transport
# If you have git
git clone <your-repo-url> web-dev-mcp
cd web-dev-mcp
# Or download and extract the files to a directory# Create virtual environment
python3 -m venv .venv
# Activate it
# On macOS/Linux:
source .venv/bin/activate
# On Windows:
# .venv\Scripts\activatepip install -r requirements.txtThis will install:
mcp[cli]>=1.2.0- Model Context Protocol SDKhttpx>=0.27.0- Async HTTP client for status checks
You can verify the server works by running it directly:
python fullstack_webdev_server.pyThe server will start and wait for MCP protocol messages on stdin. You should see log output like:
INFO - Starting Full Stack Web Dev MCP server...
Press Ctrl+C to stop it.
For a more complete test, you can send a protocol handshake:
printf '%s\n' \
'{"jsonrpc":"2.0","id":0,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"local-test","version":"0.0.1"}}}' \
'{"jsonrpc":"2.0","method":"notifications/initialized","params":{}}' \
'{"jsonrpc":"2.0","id":1,"method":"tools/list"}' \
| python fullstack_webdev_server.py- Open Claude Desktop settings (File > Settings > Developer)
- Edit your MCP configuration file (usually
~/Library/Application Support/Claude/claude_desktop_config.jsonon macOS) - Add this server to the
mcpServerssection:
{
"mcpServers": {
"fullstack_webdev": {
"command": "python",
"args": ["/absolute/path/to/web-dev-mcp/fullstack_webdev_server.py"],
"env": {
"FULLSTACK_WEBDEV_DEFAULT_PROVIDER": "vercel"
}
}
}
}Important: Replace /absolute/path/to/web-dev-mcp/ with the actual absolute path to your installation directory.
- If you're using a virtual environment, you may want to use the venv's Python instead:
{
"mcpServers": {
"fullstack_webdev": {
"command": "/absolute/path/to/web-dev-mcp/.venv/bin/python",
"args": ["/absolute/path/to/web-dev-mcp/fullstack_webdev_server.py"],
"env": {
"FULLSTACK_WEBDEV_DEFAULT_PROVIDER": "vercel"
}
}
}
}- Restart Claude Desktop
Configure the server using stdio transport with the command:
python /path/to/fullstack_webdev_server.py
Once configured, you can ask your AI assistant questions like:
- "List all the web development tools you know about"
- "Show me the UI libraries in your catalog"
- "Give me the docs and install steps for Prisma"
- "How do I bootstrap a SvelteKit app with pnpm?"
- "Recommend a stack for a realtime SaaS dashboard"
- "What are the deployment steps for Netlify?"
- "Show me how to set up Next.js with bun"
The server will provide:
- Official documentation links
- CLI installation commands
- Framework scaffolding commands
- Tailored stack recommendations
- Step-by-step deployment guides
FULLSTACK_WEBDEV_DEFAULT_PROVIDER(optional)- Default deployment provider for checklists
- Options:
vercel,netlify,cloudflare pages - Default:
vercel
No API keys or secrets are required.
Node.js, Deno, Bun, npm, pnpm
Next.js, SvelteKit, Remix, Nuxt
Tailwind CSS, shadcn/ui
GSAP, Three.js, react-three-fiber
Prisma, Supabase
Auth.js / NextAuth
Socket.IO
Stripe
Vercel, Netlify, Cloudflare Pages
Turborepo
Playwright
Sanity
MCP Client (e.g., Claude Desktop)
β (stdio transport)
Full Stack Web Dev Toolkit MCP Server
β (optional HTTP status checks)
Documentation Sources
- Open
fullstack_webdev_server.py - Add a new entry to the
RAW_TOOL_DATAlist:
{
"key": "ToolName",
"aliases": ["alias1", "alias2"],
"label": "Tool Name",
"category": "Category Name",
"homepage": "https://example.com/docs",
"summary": "Brief description of the tool",
"cli": ["npm install tool-name"],
}- Restart your MCP client to pick up the changes
Add entries to FRAMEWORK_STARTERS dictionary with quickstart commands for each package manager.
Add entries to DEPLOYMENT_PLAYBOOKS dictionary with steps and notes.
Add entries to STACK_RECIPES list with match keywords, frontend/backend/infrastructure recommendations, and extras.
- Verify the absolute path in your MCP config is correct
- Check that Python and dependencies are installed
- Look at the MCP client's logs for error messages
- Try running the server manually to check for Python errors
- Ensure you've restarted your MCP client after configuration changes
- Check that the server process is running (look for it in Activity Monitor / Task Manager)
- Review stderr logs for any Python exceptions
If using a venv, make sure:
- You're pointing to the venv's Python in your MCP config
- All dependencies are installed in that venv
- The venv was created with the correct Python version
- No credentials, API keys, or secrets are required or stored
- All data returned is informational and publicly available
- The server runs with user-level permissions
- HTTP status checks (optional) use a 5-second timeout
Contributions are welcome! To add new tools, frameworks, or deployment providers:
- Fork the repository
- Add your changes to the appropriate data structures in
fullstack_webdev_server.py - Test locally using the manual test command
- Submit a pull request with a description of your additions
MIT License
For issues, questions, or suggestions:
- Open an issue in the GitHub repository
- Check the MCP documentation at modelcontextprotocol.io
- Review the Claude Desktop documentation for MCP setup
Built with:
- Model Context Protocol by Anthropic
- FastMCP SDK
- httpx for async HTTP
Happy building! π