Project Registry MCP
Entry Point & Central Configuration Hub
Role in Ecosystem
Project Registry is the entry point for the VISHKAR MCP ecosystem. It provides centralized configuration management, secure credential storage, and API key generation for all other MCP services.
- ✓ No authentication required to start
- ✓ Register projects and get API keys
- ✓ AES-256-GCM credential encryption
- ✓ Auto-discover ecosystem capabilities
Quick Start
# 1. Discover ecosystem (no auth)
curl -X POST \
https://project-registry-henna.vercel.app/api/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "get_started",
"arguments": {}
},
"id": 1
}'Ecosystem Architecture
┌─────────────────────────────────────────────────────────────────────────────────┐
│ VISHKAR AI Agent │
│ (Claude Code, Cursor, Windsurf) │
└─────────────────────────────────────────────────────────────────────────────────┘
│
│ X-API-Key: pk_xxx
▼
┌─────────────────────────────────────────────────────────────────────────────────┐
│ PROJECT REGISTRY MCP │
│ https://project-registry-henna.vercel.app │
│ ┌─────────────────────────────────────────────────────────────────────────┐ │
│ │ Tools: get_started, create_project, get_project, validate_token │ │
│ │ Auth: None (entry point) │ Storage: Vercel KV │ Encryption: AES-256 │ │
│ └─────────────────────────────────────────────────────────────────────────┘ │
└─────────────────────────────────────────────────────────────────────────────────┘
│ │ │
▼ ▼ ▼
┌──────────────────────┐ ┌──────────────────────┐ ┌──────────────────────┐
│ ENHANCED CONTEXT │ │ JIRA MCP │ │ CONFLUENCE MCP │
│ MCP │ │ │ │ │
│ ──────────────────── │ │ ──────────────────── │ │ ──────────────────── │
│ • 17-Step SDLC │ │ • 41 Tools │ │ • 32 Tools │
│ • 38 VISHKAR Agents │ │ • Issue Management │ │ • Page Management │
│ • Context Loading │ │ • Sprint Ops │ │ • Templates │
│ • POC Methodology │ │ • Time Tracking │ │ • JIRA Integration │
│ • Engineering Stds │ │ • Bulk Operations │ │ • Macros │
│ │ │ │ │ │
│ Auth: X-API-Key │ │ Auth: Bearer Token │ │ Auth: X-API-Key │
└──────────────────────┘ └──────────────────────┘ └──────────────────────┘
│
▼
┌──────────────────────┐
│ STORYCRAFTER MCP │
│ │
│ ──────────────────── │
│ • Epic Generation │
│ • Story Generation │
│ • AI-Powered Backlog │
│ • Iterative Refine │
│ │
│ Auth: X-API-Key │
└──────────────────────┘MCP Services
Project Registry
Entry PointCentral configuration hub and credential management for the ecosystem.
Enhanced Context MCP
AI Intelligence17-Step SDLC guidance, 38 VISHKAR agents, and context-aware development.
JIRA MCP
Project MgmtComprehensive Jira integration for issues, sprints, boards, and time tracking.
Confluence MCP
DocumentationFull Confluence integration with pages, templates, attachments, and macros.
Getting Started
Discover the Ecosystem
Call get_started to understand available MCPs and their capabilities.
POST https://project-registry-henna.vercel.app/api/mcp
{"jsonrpc":"2.0","method":"tools/call","params":{"name":"get_started","arguments":{}},"id":1}Register Your Project
Store your JIRA/Confluence credentials and get an API key.
POST https://project-registry-henna.vercel.app/api/projects/register
{
"projectId": "my-project",
"projectName": "My Project",
"configs": {
"jira": {"url": "https://company.atlassian.net", "email": "...", "api_token": "..."},
"confluence": {"url": "https://company.atlassian.net/wiki", "email": "...", "api_token": "..."}
}
}Use Other MCPs
Pass your API key to access JIRA, Confluence, Enhanced Context, and StoryCrafter MCPs.
POST https://jira-mcp-pi.vercel.app/api/mcp
Authorization: Bearer pk_your_api_key
{"jsonrpc":"2.0","method":"tools/call","params":{"name":"search_issues","arguments":{"jql":"project=PROJ"}},"id":1}Ecosystem Capabilities
38 VISHKAR Agents
Specialized AI agents for architecture, security, frontend, backend, testing, and more.
17-Step SDLC
Autonomous development lifecycle with 4-angle internal reviews and quality gates.
Secure by Design
AES-256-GCM encryption, no credential exposure, serverless security.
90+ MCP Tools
Comprehensive tooling for JIRA, Confluence, backlog generation, and more.
Contextual Selection
"Give me the right architect" - automatic agent matching based on file patterns.
POC Methodology
QIP framework for building interactive proof-of-concept sites.
Project Registry Tools
| Tool | Description | Auth |
|---|---|---|
| get_started | Discover the entire MCP ecosystem - START HERE | None |
| create_project | Register project with credentials, get API key | None |
| get_project | Retrieve project config (credentials auto-decrypted) | None |
| validate_token | Check if API key is valid | None |
| list_projects | List all registered projects | Admin |
| delete_project | Remove project from registry | Admin |