Cognigy Ai Mcp Management Server logo
Health: ActiveRecent health check succeeded.Last checked 8/7/2026, 10:35:54 PM

Cognigy Ai Mcp Management Server

TsvetanG2
View Repository2

Management and automation server for the Cognigy.AI conversational AI platform, exposing 132 tools across flows, agents, snapshots, NLU, functions, and deployment. Published to the official MCP Registry. npx mcp-cognigy

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ€” or use 1-click editor setup below.

Manual Client & Custom JSON ConfigExpand JSON โ–พ

Install Config Generator

claude_desktop_config.json
{
  "mcpServers": {
    "tsvetang2-cognigy-ai-mcp-management-server": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-cognigy"
      ]
    }
  }
}

๐Ÿ’ก Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Capabilities & Tool Schemas (2)Self-reported

Inspect callable tools, capabilities, and parameters exposed to AI agents by Cognigy Ai Mcp Management Server.

limit

Callable MCP tool function

skip

Callable MCP tool function

Documentation Overview

Cognigy.AI Management MCP Server

CI npm version npm downloads node License: MIT Glama Score MCP Registry MCP Badge

cognigy-ai-mcp-management-server

Model Context Protocol server for managing Cognigy.AI virtual agents through the Management API

This is an independent, open-source MCP server and is not affiliated with, endorsed by, or sponsored by Cognigy or NiCE. It requires your own valid Cognigy.AI account and API key, used in accordance with Cognigy's commercial license terms. "Cognigy" and "Cognigy.AI" are trademarks of their respective owners.

What is this?

cognigy-ai-mcp-management-server is a local MCP server that enables AI coding assistants (Claude, Cursor, etc.) to build, configure, test, and operate Cognigy.AI conversational AI agents programmatically.

Instead of clicking through the Cognigy UI, you can now:

  • Create and manage flows, nodes, and intents via natural language
  • Run NLU training and regression tests automatically
  • Deploy snapshots and packages across environments
  • Configure LLMs, Knowledge AI, and integrations

Built for: Developers, solution architects, and SI partners who build on Cognigy.AI.

Requirements

  • Node.js 20.0.0 or higher
  • Cognigy.AI account with API access (Trial, SaaS, or on-premises)
  • API Key generated from Cognigy UI (My Profile โ†’ API Keys)

Installation

bash
# 1. Install the Cognigy REST API client (required peer dependency)
npm install @cognigy/rest-api-client

# 2. Install this MCP server
npm install -g cognigy-ai-mcp-management-server

Important: The @cognigy/rest-api-client package is licensed under "Cognigy Proprietary License". By installing it, you agree to Cognigy's license terms.

Configuration

Set environment variables before running:

server.ts
# Required: Your Cognigy API endpoint
export COGNIGY_BASE_URL=https://api-trial.cognigy.ai

# Required: Your API key (never commit this!)
export COGNIGY_API_KEY=your-api-key-here

# Optional: Default project for operations
export COGNIGY_DEFAULT_PROJECT_ID=your-project-id

Common Base URLs:

EnvironmentBase URL
Trialhttps://api-trial.cognigy.ai
SaaS EUhttps://api-app.cognigy.ai
SaaS UShttps://api-app-us.cognigy.ai
Dedicatedhttps://api-<company>.cognigy.cloud

MCP Client Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

config.json
{
  "mcpServers": {
    "cognigy": {
      "command": "npx",
      "args": ["cognigy-ai-mcp-management-server"],
      "env": {
        "COGNIGY_BASE_URL": "https://api-trial.cognigy.ai",
        "COGNIGY_API_KEY": "your-api-key-here"
      }
    }
  }
}

Claude Code

Add to .mcp.json in your project root:

config.json
{
  "mcpServers": {
    "cognigy": {
      "command": "npx",
      "args": ["cognigy-ai-mcp-management-server"],
      "env": {
        "COGNIGY_BASE_URL": "https://api-trial.cognigy.ai",
        "COGNIGY_API_KEY": "your-api-key-here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

config.json
{
  "mcpServers": {
    "cognigy": {
      "command": "npx",
      "args": ["cognigy-ai-mcp-management-server"],
      "env": {
        "COGNIGY_BASE_URL": "https://api-trial.cognigy.ai",
        "COGNIGY_API_KEY": "your-api-key-here"
      }
    }
  }
}

Available Tools

All Tools

This server provides 132 MCP tools organized by domain:

CategoryToolsDescription
Projects & Flows5List projects, flows, flow settings, logs
Nodes9CRUD operations, search, move, AI output generation
Intents & NLU10Intent management, training, scoring, audit
Endpoints2List and inspect endpoint configurations
Sessions2Inject/reset conversation context
Conversations3Fetch conversations, transcripts
Playbooks & Testing6Run playbooks, regression tests
Snapshots9Create, restore, package, diff, promote
Packages7Create, merge, upload, download
Connections5Manage API connections (secrets redacted)
LLMs7Configure generative AI providers
NLU Connectors5External NLU (Dialogflow, LUIS, etc.)
Knowledge AI21Stores, sources, chunks, connectors (RAG)
Functions9Custom code functions, instances
Extensions6Upload, configure, manage extensions
Contact Profiles11Profile CRUD, merge, export (GDPR)
Analytics4Conversation, call, knowledge metrics
Audit2Audit event logs
Handover7Live agent providers and services
Search1Organization-wide resource search
Tasks2Async task status tracking

Key Features

  • Safe by default: All mutating tools use dryRun: true by default
  • Async-aware: Long-running operations poll until completion
  • Security: API keys only in memory, secrets automatically redacted
  • Pagination: All list operations support limit and skip

Development & Testing

Mock-first Development

Run against Prism mock server (no Cognigy account needed):

bash
# Terminal 1: Start mock server
npm run mock

# Terminal 2: Run tests
npm test

Live API Testing

bash
# Create .env from template
cp .env.example .env
# Edit .env with your credentials

# Run development server
npm run dev

Build

Terminal
npm run build    # Compile TypeScript
npm test         # Run test suite (49 tests)
npm run lint     # Check code style

Regenerate Types (optional)

If you need to update the generated types from a newer Cognigy API:

Terminal
npm run update:spec   # Download latest OpenAPI spec
npm run gen:types     # Regenerate TypeScript types

Important: Dependencies

This package requires @cognigy/rest-api-client as a peer dependency. This means:

  1. You must install it separately (see Installation above)
  2. You accept Cognigy's license terms by installing their package
  3. We do not bundle or redistribute any Cognigy code

You are responsible for:

  • Reviewing and accepting Cognigy's proprietary license terms
  • Having appropriate rights to use the Cognigy API
  • Keeping your API credentials secure

The Cognigy REST API client is the official SDK maintained by Cognigy GmbH and is published on npm under "Cognigy Proprietary License".

License

This MCP server is released under the MIT License. See LICENSE for details.

Note: The MIT license applies only to this MCP server code. Dependencies (particularly @cognigy/rest-api-client) are subject to their own licenses.

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Follow existing code patterns (Zod schemas, dryRun flags, etc.)
  4. Add tests for new tools
  5. Run npm test && npm run build before committing
  6. Submit a Pull Request

Development Guidelines

  • All tools must have Zod input validation
  • Mutating tools must support dryRun flag (default: true)
  • Tool descriptions should be LLM-friendly (1-2 sentences)
  • Never log or expose API keys/secrets
  • Test against mock server before live API

Support


Built with Model Context Protocol SDK

Related MCP Servers

View all alternatives

Frequently Asked Questions about Cognigy Ai Mcp Management Server

How do I install the TsvetanG2/cognigy-ai-mcp-management-server MCP server?

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "cognigy-ai-mcp-management-server": { "command": "npx", "args": ["-y", "TsvetanG2/cognigy-ai-mcp-management-server"] } }

What does TsvetanG2/cognigy-ai-mcp-management-server do?

Management and automation server for the Cognigy.AI conversational AI platform, exposing 132 tools across flows, agents, snapshots, NLU, functions, and deployment. Published to the official MCP Registry. npx mcp-cognigy

Is the TsvetanG2/cognigy-ai-mcp-management-server MCP server free to use?

Yes. TsvetanG2/cognigy-ai-mcp-management-server is listed on AllMCPs as a free, open Model Context Protocol server you can install into Claude Desktop, Cursor, or any MCP-compatible client.

Technical Specs & Signals

TransportSTDIO
RuntimeNode.js
Health CheckActive
Views0
Installs0
GitHub stars2
49Quality signal: Fair ยท 49/100How this signal is calculated โ–พ
Server availabilityNot measured

Not scored for repo-hosted servers โ€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools28/30
Adoption1/15
Community engagement0/10

A guidance signal from public completeness & health data โ€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

โ˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge โ€” we recheck it stays live.

Claim & get free dofollow

Promote this listing

Optional paid placement. Free listings stay free forever.

Featured boost7 days in the spotlight ยท from $12/wk
Weeks
1

โ†’ Runs until Aug 15, 2026

Category sponsorTop-of-category sponsorship ยท from $18/wk
Weeks
1

โ†’ Runs until Aug 15, 2026

Cancel anytime โ€” no long-term lock-in.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.