Centralized documentation for all Model Context Protocol services
Central registry for managing project configurations, API keys, and credentials across all MCP services. Entry point for the VISHKAR ecosystem.
Intelligent context loading, VISHKAR agent management, 17-step SDLC guidance, and contextual agent selection for AI-powered development
Comprehensive Jira integration with 41 tools for issue management, board operations, sprints, time tracking, and bulk operations
Confluence integration with 32 tools for page management, document operations, templates, and JIRA integration
AI-powered backlog generation with 4 tools for creating epics, user stories, and iterative refinement
Quick guide to integrating with our Model Context Protocol services
Start by registering your project in the Project Registry to get an API key:
POST https://project-registry-henna.vercel.app/api/projects/register
Content-Type: application/json
{
"projectId": "my-project",
"projectName": "My Project",
"configs": {
"jira": {
"url": "https://company.atlassian.net",
"email": "user@company.com",
"api_token": "your_token"
}
}
}All API documentation is publicly accessible - no authentication needed! Browse the Swagger UI, explore endpoints, and understand the API structure without any setup.
💡 Tip: Documentation endpoints (GET requests) are public. Only actual tool execution (POST requests) requires authentication.
When you're ready to execute tools, include your API key in the X-API-Key header:
POST https://jira-mcp-pi.vercel.app/api/mcp
X-API-Key: pk_your_api_key_here
Content-Type: application/json
{
"tool": "search_issues",
"arguments": {
"jql": "project = PROJ"
}
}Use the interactive Swagger documentation to test API calls directly from your browser. Click the "Interactive API Documentation" button for any service above, then use the "Authorize" button to add your API key for testing authenticated endpoints.