Get AI-powered secure coding guidance in your Claude Desktop conversations.
cd /path/to/guided
mix phx.serverVerify it's running:
curl http://localhost:4000/mcpFind your config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Add guided.dev to the config:
{
"mcpServers": {
"guided-dev": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:4000/mcp"
]
}
}
}If you have other MCP servers, just add guided.dev to the list:
{
"mcpServers": {
"guided-dev": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:4000/mcp"
]
},
"your-other-server": {
"command": "...",
"args": ["..."]
}
}
}Close and reopen Claude Desktop completely.
In a new Claude conversation:
You: Do you have access to guided.dev?
Claude should confirm it has access to three tools:
tech_stack_recommendationsecure_coding_patterndeployment_guidance
You: I want to build a dashboard to track my team's metrics
Claude will use tech_stack_recommendation and provide secure recommendations with security advisories.
You: How do I safely query a SQLite database in Python?
Claude will use secure_coding_pattern and show you secure code examples.
You: Where should I deploy my Streamlit app?
Claude will use deployment_guidance and recommend deployment platforms.
-
Check server is running:
curl http://localhost:4000/mcp
-
Verify npx is available:
npx --version
-
Check Claude Desktop logs:
- macOS:
~/Library/Logs/Claude/ - Windows:
%APPDATA%\Claude\logs\ - Linux:
~/.config/Claude/logs/
- macOS:
-
Restart both:
- Stop and restart guided.dev server
- Completely quit and reopen Claude Desktop
Make sure Phoenix is running on port 4000:
lsof -i :4000Should show something like:
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
beam.smp 1234 user 45u IPv4 0x... 0t0 TCP *:4000 (LISTEN)
Install Node.js from nodejs.org, then try again.
When Claude uses guided.dev, it provides:
✅ Security-First Recommendations - All tech stacks come with OWASP Top 10 security advisories ✅ Secure Code Examples - Real code snippets using best practices ✅ Deployment Guidance - Recommendations based on your stack and requirements ✅ Up-to-Date Knowledge - Curated from the guided.dev knowledge graph
- Full Documentation: docs/MCP_SERVER.md
- AGENTS.md Protocol: AGENTS.md
- GitHub Issues: github.com/carverauto/guided/issues
Ready to build secure software with AI? 🚀
Start a conversation with Claude and ask for development guidance!