MCP Client Compatibility Probe
Small diagnostic MCP server for checking what MCP clients actually support, including tools, resources, prompts, and transport behavior.
README
MCP Client Compatibility Probe
Small diagnostic MCP server for checking what MCP clients actually support.
The server is intentionally dependency-free and split into transport-neutral core logic plus a local stdio adapter. A future HTTP adapter can reuse probe-core.mjs for ChatGPT Web, OpenAI API, or remote MCP testing.
The intended workflow is AI-assisted: point the assistant/client you want to test at this repository and let it run the probe, inspect the trace, create a result file, and prepare a commit. In practice that is a single prompt.
The current informal client support overview lives in CLIENT-MATRIX.md. Detailed test design and result templates live in TESTPLAN.md.
Quick Start For Testers
Option A: One Prompt
Start the assistant or client you want to test, in a directory it is allowed to write to, and give it this:
Clone https://github.com/kascada/mcp-client-compat-probe.git, then read PROMPT.md from that clone and follow the prompt inside it. You are the client under test.
That is the whole setup. From there the assistant clones the repo, runs the smoke test, registers the probe as a local MCP server, runs the probe interactions, inspects the trace, and writes the result file. It comes back to you only for the things it genuinely cannot do itself: restarting the client so it picks up the MCP config, invoking anything the client exposes only as a user action, and approving the push or pull request.
This assumes a client that can run shell commands and read local files, such as Claude Code, Codex CLI, OpenCode or Cursor. If yours cannot, use Option B.
Option B: Step By Step
The same test, spelled out. Use this if your client cannot clone on its own, or if you want to see what Option A will do before you run it.
-
Clone this repository.
git clone https://github.com/kascada/mcp-client-compat-probe.git cd mcp-client-compat-probeHTTPS is recommended for most testers because it works without a configured SSH key. If you already use GitHub over SSH, this is equivalent:
git clone git@github.com:kascada/mcp-client-compat-probe.git cd mcp-client-compat-probe -
Open the cloned directory in the MCP-capable assistant/client you want to test.
-
Ask the assistant to run
PROMPT.md, for example:Run PROMPT.md. If the assistant cannot read local files, paste the full content ofPROMPT.mdinstead. -
Follow only the explicit prompts for client restart, MCP setup confirmation, and push/PR approval.
The assistant should handle the rest:
- run
npm run smoke - help configure the local
stdioMCP server if needed - run the probe interactions
- inspect the trace file
- write
results/<client>-<username>-<date>.md - stage and commit only that result file
Do not commit full trace files by default. Result files should include only small redacted excerpts.
Contributing A Result
This repository is public, which means anyone can read and clone it, but not push to it. Cloning does not create a fork and grants no write access, so contributing a result goes through a pull request from your own fork. The assistant can do this for you; the manual equivalent is:
gh repo fork --remote # your own fork, no permissions needed here
git switch -c probe-result-<client>-<username>
git add results/<client>-<username>-<date>.md # only the result file
git commit -m "Add <client> probe result <username> <date>"
git push -u origin probe-result-<client>-<username> # pushes to your fork
gh pr create --repo kascada/mcp-client-compat-probe
Use your GitHub account name as <username>, so the result is attributable in the shared collection.
If you cannot or do not want to open a pull request, both of these are fine too:
- Open an issue and attach the result file.
- Send the result file to the repository author directly, together with the client version, the operating system, and your MCP config with secrets removed.
Files
mcp-probe/
README.md # quickstart and feature overview
CLIENT-MATRIX.md # informal client support matrix
PROMPT.md # assistant prompt for running and recording tests
TESTPLAN.md # repeatable client test plan
probe-core.mjs # JSON-RPC handlers and probe tools
stdio-server.mjs # local stdio transport
opencode.json # isolated OpenCode test config
package.json # npm scripts, no dependencies
results/ # contributed client observations
scripts/smoke-stdio.mjs # direct stdio smoke test
Probe Coverage
Implemented MCP methods:
server/discover- legacy
initializefallback response tools/listtools/callresources/listresources/readresources/templates/listprompts/listprompts/get- stub
subscriptions/listen
Tools:
echo_meta: returns received arguments,_meta, client capabilities, and transport observations.structured_result: returns text plusstructuredContentmatching anoutputSchema.create_handle: creates an explicit state handle.use_handle: uses a handle fromcreate_handle.needs_form_input: returnsresultType: "input_required"until retried withinputResponses.tool_error: returns a tool execution error viaisError: true.resource_link_result: returns aresource_linkcontent item.search: ChatGPT-compatible search stub.fetch: ChatGPT-compatible fetch stub.
Smoke Test
Run from this directory:
npm run smoke
Or without npm:
node scripts/smoke-stdio.mjs
The smoke test writes its trace to:
/tmp/mcp-probe-smoke.ndjson
Trace Log
The server never writes diagnostics to stdout, because stdout must contain only MCP JSON-RPC messages. Diagnostics go to stderr and the trace file.
Default trace path:
/tmp/mcp-probe.ndjson
OpenCode trace path from opencode.json:
/tmp/mcp-probe-opencode.ndjson
Each line is JSON with:
ts: timestamppid: server process IDdirection:inoroutpayload: JSON-RPC payload
Test With OpenCode
This directory contains an isolated opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"probe": {
"type": "local",
"command": ["node", "stdio-server.mjs"],
"cwd": ".",
"enabled": true,
"timeout": 10000,
"environment": {
"MCP_PROBE_TRACE": "/tmp/mcp-probe-opencode.ndjson"
}
}
}
}
Start OpenCode from this directory so it loads the local config:
opencode
Then ask:
Nutze das probe echo_meta Tool und zeige mir, welche MCP-Metadaten du gesendet hast.
Additional useful prompts:
Nutze probe structured_result mit label opencode.
Erzeuge mit probe create_handle ein Handle fuer confluence und nutze es danach mit probe use_handle fuer die Query release notes.
Teste probe needs_form_input fuer topic OpenCode Elicitation.
Nutze probe search fuer query probe und danach probe fetch fuer das erste Ergebnis.
Interpret the trace:
server/discoverpresent: modern MCP discovery probe is used.initializepresent: legacy handshake path is used._meta.io.modelcontextprotocol/protocolVersionpresent: per-request protocol version is sent._meta.io.modelcontextprotocol/clientCapabilities.elicitationpresent: client declares elicitation support.resources/listorprompts/listpresent: client actively queries non-tool primitives.- Retry after
input_required: MRTR/Elicitation flow is handled.
OpenCode reads config at startup. Restart OpenCode after changing opencode.json or server files.
Test With Codex CLI Or ChatGPT Desktop
The same local stdio server can be used by Codex CLI, ChatGPT Desktop app, and Codex IDE extension because they support local MCP servers.
Example Codex CLI registration from this directory:
codex mcp add probe --env MCP_PROBE_TRACE=/tmp/mcp-probe-codex.ndjson -- node stdio-server.mjs
Then use /mcp in Codex to inspect active servers and ask for the same probe tools as above.
For ChatGPT Desktop app, add a new MCP server in Settings with:
- Name:
probe - Type:
STDIO - Command:
node - Args: absolute path to
stdio-server.mjs - Environment:
MCP_PROBE_TRACE=/tmp/mcp-probe-chatgpt-desktop.ndjson
ChatGPT Web And OpenAI API Path
ChatGPT Web cannot directly start a local stdio server or read local Codex/OpenCode configuration. For ChatGPT Web or OpenAI API testing, add a remote HTTP adapter later.
The current design keeps that path open:
probe-core.mjshas no stdio-specific behavior.stdio-server.mjsonly adapts newline-delimited JSON-RPC tohandleJsonRpc.- A future
http-server.mjscan call the samehandleJsonRpcand pass HTTP headers in the transport object. - The existing
searchandfetchtools already follow the simple ChatGPT-compatible shape withstructuredContentand URL-backed results.
HTTP-specific checks to add later:
MCP-Protocol-Version,Mcp-Method,Mcp-Name- static/Bearer headers
- OAuth behavior
x-mcp-headerfrom tool parameters- Streamable HTTP response behavior
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。