foundersandcoders/MCP_workshop
3.2
If you are the rightful owner of MCP_workshop and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The Developer MCP Server is a tool designed to facilitate the analysis and management of software projects through a model context protocol server.
Tools
3
Resources
0
Prompts
0
MCP Server Workshop
Test with MCP Inspector
Launch Inspector:
npx @modelcontextprotocol/inspector python server.py
Inspector automatically opens at http://localhost:5173
Test the tools:
- Run
ping→ returns{"ok": true, "message": "Server is running"} - Run
weatherwith a city name (e.g., "London")
Troubleshooting
If Inspector gets stuck:
# macOS/Linux
pkill -f "@modelcontextprotocol/inspector"
# Windows
Get-Process | Where-Object { $_.Path -like "*@modelcontextprotocol*" } | Stop-Process