Vibe模型上下文协议
STREAMABLE HTTPAI辅助开发的代码上下文分析管理服务器
AI辅助开发的代码上下文分析管理服务器
A Python-based server for managing and analyzing code context for AI-assisted development.

POST /token - Get authentication tokenPOST /analyze - Analyze a projectGET /context - Get context for a file or projectGET /dependencies - Get project dependenciesGET /structure - Get project structuregit clone https://github.com/non-npc/Vibe-Model-Context-Protocol-Server.git cd mcps
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
.env.example to .env.env as neededStart the server:
python -m mcps.main
curl -X POST "http://localhost:8000/token" -H "Content-Type: application/x-www-form-urlencoded" -d "username=admin&password=admin"
curl -X POST "http://localhost:8000/analyze" -H "Authorization: Bearer <token>" -H "Content-Type: application/json" -d '{"project_path": "/path/to/your/project"}'
curl -X GET "http://localhost:8000/context" -H "Authorization: Bearer <token>"
Access the API:
http://localhost:8000http://localhost:8000/docspip install -r requirements-dev.txt
pytest