Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables AI assistants to interact with CA Clarity PPM for discovery, CRUD operations, and analytics.

README.md

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.): ``bash npm start ``

HTTP mode (for web integrations): ``bash 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.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.