MCP server for Cognigy.AI - 132 tools to build, configure & operate conversational AI agents
MCP server for Cognigy.AI - 132 tools that let Claude, Cursor & other AI assistants build, configure, test & operate conversational AI agents via the Model Context Protocol.
This is a well-structured MCP server for managing Cognigy.AI agents with proper authentication requirements and reasonable permissions. The server requires API keys via environment variables and implements basic safety patterns like default dry-run mode on mutations. However, there are several code quality and documentation concerns: environment variables are read but not explicitly validated at startup, the server accepts broad network access to Cognigy APIs without rate limiting, and there are no explicit safeguards logged when sensitive operations (like deleting agents or snapshots) execute. Package verification found 1 issue.
3 files analyzed · 7 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: COGNIGY_API_KEY
Sign up freeEnvironment variable: COGNIGY_BASE_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"cognigy-ai-management-mcp-server": {
"env": {
"COGNIGY_API_KEY": "your-cognigy-api-key-here",
"COGNIGY_BASE_URL": "your-cognigy-base-url-here"
},
"args": [
"-y",
"cognigy-ai-mcp-management-server"
],
"command": "npx"
}
}
}Once installed, try these example prompts and explore these capabilities:
From the project's GitHub README.

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.
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:
Built for: Developers, solution architects, and SI partners who build on Cognigy.AI.
# 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.
Set environment variables before running:
# 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:
| Environment | Base URL |
|---|---|
| Trial | https://api-trial.cognigy.ai |
| SaaS EU | https://api-app.cognigy.ai |
| SaaS US | https://api-app-us.cognigy.ai |
| Dedicated | https://api-<company>.cognigy.cloud |
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"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"
}
}
}
}
Add to .mcp.json in your project root:
{
"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"
}
}
}
}
Add to .cursor/mcp.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"
}
}
}
}
This server provides 132 MCP tools organized by domain:
| Category | Tools | Description |
|---|---|---|
| Projects & Flows | 5 | List projects, flows, flow settings, logs |
| Nodes | 9 | CRUD operations, search, move, AI output generation |
| Intents & NLU | 10 | Intent management, training, scoring, audit |
| Endpoints | 2 | List and inspect endpoint configurations |
| Sessions | 2 | Inject/reset conversation context |
| Conversations | 3 | Fetch conversations, transcripts |
| Playbooks & Testing | 6 | Run playbooks, regression tests |
| Snapshots | 9 | Create, restore, package, diff, promote |
| Packages | 7 | Create, merge, upload, download |
| Connections | 5 | Manage API connections (secrets redacted) |
| LLMs | 7 | Configure generative AI providers |
| NLU Connectors | 5 | External NLU (Dialogflow, LUIS, etc.) |
| Knowledge AI | 21 | Stores, sources, chunks, connectors (RAG) |
| Functions | 9 | Custom code functions, instances |
| Extensions | 6 | Upload, configure, manage extensions |
| Contact Profiles | 11 | Profile CRUD, merge, export (GDPR) |
| Analytics | 4 | Conversation, call, knowledge metrics |
| Audit | 2 | Audit event logs |
| Handover | 7 | Live agent providers and services |
| Search | 1 | Organization-wide resource search |
| Tasks | 2 | Async task status tracking |
dryRun: true by defaultlimit and skipRun against Prism mock server (no Cognigy account needed):
# Terminal 1: Start mock server
npm run mock
# Terminal 2: Run tests
npm test
# Create .env from template
cp .env.example .env
# Edit .env with your credentials
# Run development server
npm run dev
npm run build # Compile TypeScript
npm test # Run test suite (49 tests)
npm run lint # Check code style
If you need to update the generated types from a newer Cognigy API:
npm run update:spec # Download latest OpenAPI spec
npm run gen:types # Regenerate TypeScript types
This package requires @cognigy/rest-api-client as a peer dependency. This means:
You are responsible for:
The Cognigy REST API client is the official SDK maintained by Cognigy GmbH and is published on npm under "Cognigy Proprietary 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.
Contributions are welcome! Please:
git checkout -b feature/amazing-feature)npm test && npm run build before committingdryRun flag (default: true)Built with Model Context Protocol SDK
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.