Clarity PPM MCP Server
Enables AI assistants to interact with CA Clarity PPM for discovery, CRUD operations, and analytics.
README
Clarity PPM MCP Server
A Model Context Protocol (MCP) server for CA Clarity PPM that enables AI assistants to interact with your Clarity PPM system through a standardized interface.
Features
š Discovery Tools
- clarity_list_objects - Discover all available object types (standard and custom)
- clarity_describe_object - Get detailed metadata about any object
- clarity_get_lookup_values - Retrieve dropdown/lookup values
- clarity_search_metadata - Search objects and fields by name (supports Hebrew!)
š CRUD Operations
- clarity_list_records - List records with smart filtering and pagination
- clarity_get_record - Get a single record with all details
- clarity_count_records - Count records matching criteria
- clarity_get_children - Get child records (e.g., tasks under a project)
- clarity_create_record - Create new records
- clarity_update_record - Update existing records
- clarity_delete_record - Delete records
š Analytics
- clarity_get_distribution - Get distribution data for visualizations
š Deep Linking
- All records include direct links to open in Clarity UI
- Supports projects, tasks, resources, ideas, and custom objects
Quick Start
1. Install Dependencies
npm install
2. Configure Environment
Copy .env.example to .env and configure:
cp .env.example .env
Edit .env:
CLARITY_BASE_URL=https://your-clarity.com
CLARITY_USERNAME=your_username
CLARITY_PASSWORD=your_password
3. Build
npm run build
4. Run
stdio mode (for Claude Desktop, etc.):
npm start
HTTP mode (for web integrations):
TRANSPORT=http npm start
Configuration for Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"clarity-ppm": {
"command": "node",
"args": ["/path/to/clarity-ppm-mcp-server/dist/index.js"],
"env": {
"CLARITY_BASE_URL": "https://your-clarity.com",
"CLARITY_USERNAME": "your_username",
"CLARITY_PASSWORD": "your_password"
}
}
}
}
Example Usage
Once connected, you can ask Claude:
- "What objects are available in Clarity?"
- "Show me all active projects"
- "How many tasks are in project 5001?"
- "Create a new task called 'Review Requirements' under project 5001"
- "What's the status distribution of all projects?"
- "Show me custom objects"
- "Find fields related to budget"
Architecture
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā MCP Client ā
ā (Claude, VS Code, etc.) ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā
ā MCP Protocol
ā¼
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā Clarity PPM MCP Server ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā¤
ā Tools ā Resources ā Services ā
ā āāāāāāāāā ā āāāāāāāāāā ā āāāāāāāā ā
ā - Discovery ā - Metadata ā - ClarityApiClient ā
ā - Records ā - Context ā - MetadataService ā
ā - Analytics ā - Links ā - LookupService ā
ā - Workflow ā ā - LinkGenerator ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā
ā REST API
ā¼
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā CA Clarity PPM ā
ā (SaaS / On-Premise / Hybrid) ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
Supported Clarity Versions
- Clarity PPM 15.x and above
- Works with SaaS, On-Premise, and Hybrid deployments
Development
# Install dependencies
npm install
# Build
npm run build
# Run in development (with auto-reload)
npm run dev
# Run tests
npm test
License
MIT
Contributing
Contributions welcome! Please read the contributing guidelines first.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.