Full Stack Web Dev Toolkit MCP Server
Delivers curated documentation, quickstart commands, and stack recommendations for modern full stack web development through MCP-enabled AI assistants.
README
Full Stack Web Dev Toolkit MCP Server
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.
Features
- 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, Vue.js, 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
- Design Knowledge Catalog - Explore curated references for color theory, typography, brand psychology, and design systems
Available Tools
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 providerdesign_knowledge_sources- Review curated design references or search for color, typography, and branding resources
Prerequisites
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
Installation & Setup
Step 1: Clone or Download the Repository
# 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
Step 2: Create a Virtual Environment (Recommended)
# Create virtual environment
python3 -m venv .venv
# Activate it
# On macOS/Linux:
source .venv/bin/activate
# On Windows:
# .venv\Scripts\activate
Step 3: Install Dependencies
pip install -r requirements.txt
This will install:
mcp[cli]>=1.2.0- Model Context Protocol SDKhttpx>=0.27.0- Async HTTP client for status checks
Step 4: Test the Server Locally (Optional)
You can verify the server works by running it directly:
python fullstack_webdev_server.py
The 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
Step 5: Configure Your MCP Client
For Claude Desktop:
- 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
For Other MCP Clients:
Configure the server using stdio transport with the command:
python /path/to/fullstack_webdev_server.py
Usage Examples
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
Configuration
Environment Variables
FULLSTACK_WEBDEV_DEFAULT_PROVIDER(optional)- Default deployment provider for checklists
- Options:
vercel,netlify,cloudflare pages - Default:
vercel
No API keys or secrets are required.
Catalog Coverage
Runtimes & Package Managers
Node.js, Deno, Bun, npm, pnpm
App Frameworks
Next.js, SvelteKit, Vue.js, Remix, Nuxt
UI Libraries & Styling
Tailwind CSS, shadcn/ui
Animation & 3D
GSAP, Three.js, react-three-fiber
Databases & ORM
Prisma, Supabase
Authentication
Auth.js / NextAuth
Realtime & Messaging
Socket.IO
Payments & Services
Stripe
Deployment & Edge
Vercel, Netlify, Cloudflare Pages
Build Tools & Monorepos
Turborepo
Testing & Quality
Playwright
Headless CMS
Sanity
Architecture
MCP Client (e.g., Claude Desktop)
↓ (stdio transport)
Full Stack Web Dev Toolkit MCP Server
↓ (optional HTTP status checks)
Documentation Sources
Development
Adding New Tools
- 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
Adding New Frameworks
Add entries to FRAMEWORK_STARTERS dictionary with quickstart commands for each package manager.
Adding New Deployment Providers
Add entries to DEPLOYMENT_PLAYBOOKS dictionary with steps and notes.
Adding New Stack Recipes
Add entries to STACK_RECIPES list with match keywords, frontend/backend/infrastructure recommendations, and extras.
Troubleshooting
Server Not Appearing in Client
- 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
Tools Not Working
- 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
Virtual Environment Issues
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
Security
- 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
Contributing
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
License
MIT License
Support
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
Acknowledgments
Built with:
- Model Context Protocol by Anthropic
- FastMCP SDK
- httpx for async HTTP
Happy building! 🚀
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.