MCP Documentation Hub

Centralized documentation for all Model Context Protocol services

5 Services

Project Registry

Central registry for managing project configurations, API keys, and credentials across all MCP services. Entry point for the VISHKAR ecosystem.

active
1 tools
4 features
API Key Management
Credential Storage
Project Configuration
MCP Hub

Enhanced Context MCP

Intelligent context loading, VISHKAR agent management, 17-step SDLC guidance, and contextual agent selection for AI-powered development

active
10 tools
5 features
Context Loading
Agent Management
17-Step SDLC
Contextual Agent Selection
38 VISHKAR Agents

JIRA MCP

Comprehensive Jira integration with 41 tools for issue management, board operations, sprints, time tracking, and bulk operations

active
41 tools
5 features
Issue Management
Board Operations
Time Tracking
Sprint Management
Bulk Operations

Confluence MCP

Confluence integration with 32 tools for page management, document operations, templates, and JIRA integration

active
32 tools
5 features
Page Management
Content Search
Templates
Attachments
JIRA Integration

StoryCrafter MCP

AI-powered backlog generation with 4 tools for creating epics, user stories, and iterative refinement

beta
4 tools
4 features
Epic Generation
Story Generation
Iterative Refinement
VISHKAR Integration

Getting Started with MCP Services

Quick guide to integrating with our Model Context Protocol services

1. Register Your Project

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"
    }
  }
}

2. Explore the Documentation (No Auth Required)

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.

3. Use Your API Key for Tool Execution

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"
  }
}

4. Test in Swagger UI

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.