MCP-KD Server

MCP-KD Server

An MCP server for managing OpenText Knowledge Discovery content engines, enabling AI assistants to create, delete, list databases, delete documents, query engine status, and manage engine configuration through natural language.

Category
访问服务器

README

MCP-KD Server

An MCP (Model Context Protocol) server for managing OpenText Knowledge Discovery content engines.

This server exposes Content Engine administration tasks as MCP tools, allowing AI assistants to create databases, delete databases, list databases, delete documents, query engine status, and manage engine configuration — all through natural language.


Features

  • Pure Python 3.10+ — no external MCP SDK required (JSON-RPC 2.0 over stdio)
  • Multi-engine support with an active engine concept
  • Hot-reload configuration at runtime
  • HTTPS with custom CA bundle support
  • Docker-ready (see Docker section below)

Available Tools

Tool Description Required Params Optional Params
create_database Create a new database via DRECREATEDBASE db_name engine_name, internal, read_only
delete_database Delete a database and all its documents via DREREMOVEDBASE db_name engine_name, ignore_max_pending_items, index_uid, no_archive, priority
list_databases List all databases via GetStatus admin action engine_name
delete_documents Delete all documents from a database via DREREMOVEDBASE db_name engine_name
get_status Get engine status (version, ports, components) engine_name
list_engines Show all configured engines and the active one
reload_config Hot-reload config.json without restarting

Quick Start

Prerequisites

  • Python 3.10 or later
  • httpx package (pip install httpx)
  • Access to a running OpenText Knowledge Discovery content engine with HTTPS

1. Clone & Configure

git clone <repo-url>
cd mcp-kd

Copy the example config and edit it with your engine details:

cp config.json.example config.json

Edit config.json:

{
  "active": "content1",
  "engines": {
    "content1": {
      "host": "content-engine-host.example.com",
      "index_port": 9101,
      "aci_port": 9000,
      "ssl_cert": "/certs/bundle.crt",
      "verify_ssl": true
    }
  },
  "request_timeout": 30,
  "log_level": "INFO"
}
Key Description
active Which engine entry is used by default
engines.<name>.host Hostname or IP of the content engine
engines.<name>.index_port Index action port (e.g., DRECREATEDBASE)
engines.<name>.aci_port ACI / admin action port (e.g., GetStatus)
engines.<name>.ssl_cert Path to the CA certificate bundle for HTTPS
engines.<name>.verify_ssl Set to false to skip SSL verification (not recommended)
request_timeout HTTP request timeout in seconds
log_level Logging level (DEBUG, INFO, WARNING, ERROR)

2. Install Dependencies

pip install httpx>=0.27.0

If using a virtual environment:

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

3. Prepare SSL Certificate

Place your content engine's CA certificate bundle at the path specified in config.json (ssl_cert):

mkdir -p certs
cp /path/to/your/bundle.crt certs/

4. Run the Server

python3 server.py

The server listens on stdin/stdout using the MCP JSON-RPC 2.0 protocol. It is designed to be launched by an MCP host (VS Code, Claude Desktop, etc.).


VS Code Integration

Add this to .vscode/mcp.json in your project:

{
  "servers": {
    "mcp-kd": {
      "command": "/usr/bin/python3",
      "args": ["/path/to/mcp-kd/server.py"],
      "env": { "PYTHONUNBUFFERED": "1" }
    }
  }
}

Reload the VS Code window (Developer: Reload Window) and mcp-kd will appear in the MCP Servers view.


Docker

Build

docker build -t mcp-kd:latest .

Run with Docker Compose

docker compose up -d

The docker-compose.yml mounts config.json and the certs/ directory as volumes so you can update them without rebuilding the image.

Run with Docker CLI

docker run -i \
  -v $(pwd)/config.json:/app/config.json:ro \
  -v $(pwd)/certs:/certs:ro \
  mcp-kd:latest

The -i flag (stdin open) is required — MCP communicates via stdio.


Architecture

┌──────────────┐     stdio/JSON-RPC      ┌──────────────┐     HTTPS/REST     ┌─────────────────┐
│  MCP Host    │ ◄──────────────────────► │  server.py   │ ◄────────────────► │  Content Engine │
│ (VS Code,    │                          │  (MCP-KD)    │                    │  (OpenText KD)  │
│  Claude, etc)│                          └──────┬───────┘                    └─────────────────┘
└──────────────┘                                 │
                                          ┌──────▼───────┐
                                          │ content_engine.py │
                                          │ (REST client)     │
                                          └──────────────────┘
  • server.py — MCP protocol layer: parses JSON-RPC requests, routes to tool handlers, returns responses
  • content_engine.py — REST API client: manages HTTPS connections, maps tool calls to Content Engine index/admin actions

Multi-Engine Support

Define multiple engines in config.json and switch between them at runtime by providing the engine_name parameter in tool calls:

{
  "active": "content1",
  "engines": {
    "content1": { "host": "engine1.example.com", "index_port": 9101, "aci_port": 9000 },
    "content2": { "host": "engine2.example.com", "index_port": 9101, "aci_port": 9000 }
  }
}

Pass "engine_name": "content2" to target a specific engine. Omit it to use the active engine.


Project Structure

mcp-kd/
├── server.py              # MCP server (JSON-RPC 2.0 over stdio)
├── content_engine.py      # Content Engine REST API client
├── config.json            # Engine configuration (git-ignored)
├── config.json.example    # Example config with placeholder values
├── requirements.txt       # Python dependencies
├── Dockerfile             # Docker image definition
├── docker-compose.yml     # Docker Compose configuration
├── .gitignore             # Git ignore rules
├── .dockerignore          # Docker build ignore rules
├── test_smoke.py          # Smoke test for the MCP server
├── instructions/          # Reference docs for Content Engine actions
│   ├── goal.md
│   ├── createDb.md
│   ├── deleteDb.md
│   ├── getstatus.md
│   └── general-instructions.md
└── certs/                 # SSL certificate bundles (git-ignored)
    └── bundle.crt

License

This project is provided as-is for managing OpenText Knowledge Discovery content engines.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选