Model Context Protocol server for procurement and contract management
v1.0.0 - RunningList, view, and manage procurement requests
Search and manage supplier directory
Create and update price quotes
Award contracts and manage POs
Secure access with session management
HTTP, SSE, and stdio support
| Endpoint | Method | Description |
|---|---|---|
/health |
GET | Health check |
/mcp |
POST | MCP streamable transport |
/sse |
GET | SSE transport connection |
/.well-known/oauth-authorization-server |
GET | OAuth metadata |
/oauth/authorize |
GET POST | Authorization endpoint |
/oauth/token |
POST | Token endpoint |
/oauth/register |
POST | Dynamic client registration |
Add to your claude_desktop_config.json:
{
"mcpServers": {
"promptlab": {
"command": "node",
"args": ["/path/to/promptlab-mcp/dist/stdio.js"],
"env": {
"PROMPTLAB_TOKEN": "your_jwt_token",
"BACKEND_URL": "https://api.promptlab.uz/api"
}
}
}
}