Development
对比两个 API 响应 JSON,标出字段级差异,并区分真正的功能变更与无害的运行时漂移
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/api/tools/api-response-diff-semantic-analyzer' \
-H 'Content-Type: application/json' \
-d '{"leftResponseJson":"{\"id\":\"c1a1c77d-8ab1-4f5f-a2b7-a5796a7f7d10\",\"name\":\"Alice\",\"createdAt\":\"2026-04-07T09:00:00Z\",\"profile\":{\"tier\":\"pro\",\"quota\":10}}","rightResponseJson":"{\"id\":\"a9f4e419-c5ef-4df6-b274-28a86f4d1b40\",\"name\":\"Alice\",\"createdAt\":\"2026-04-07T09:05:00Z\",\"profile\":{\"tier\":\"enterprise\",\"quota\":\"10\"}}","leftEndpointUrl":"","rightEndpointUrl":"","httpMethod":"GET","requestHeadersJson":"{}","requestBodyJson":"{}","leftLabel":"staging","rightLabel":"production","ignoreSafeDrift":true,"useAiSemanticReview":true}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/api-response-diff-semantic-analyzer| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| leftResponseJson | textarea | 否 | — |
| rightResponseJson | textarea | 否 | — |
| leftEndpointUrl | text | 否 | — |
| rightEndpointUrl | text | 否 | — |
| httpMethod | select | 否 | — |
| requestHeadersJson | textarea | 否 | — |
| requestBodyJson | textarea | 否 | — |
| leftLabel | text | 否 | — |
| rightLabel | text | 否 | — |
| ignoreSafeDrift | checkbox | 否 | — |
| useAiSemanticReview | checkbox | 否 | — |
HTML 结果
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-api-response-diff-semantic-analyzer": {
"name": "api-response-diff-semantic-analyzer",
"description": "对比两个 API 响应 JSON,标出字段级差异,并区分真正的功能变更与无害的运行时漂移",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=api-response-diff-semantic-analyzer",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}连接到 SSE 端点后,列出已开放的工具:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}通过工具 id 调用,参数由其参数表构建:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "api-response-diff-semantic-analyzer",
"arguments": {
"leftResponseJson": "{\"id\":\"c1a1c77d-8ab1-4f5f-a2b7-a5796a7f7d10\",\"name\":\"Alice\",\"createdAt\":\"2026-04-07T09:00:00Z\",\"profile\":{\"tier\":\"pro\",\"quota\":10}}",
"rightResponseJson": "{\"id\":\"a9f4e419-c5ef-4df6-b274-28a86f4d1b40\",\"name\":\"Alice\",\"createdAt\":\"2026-04-07T09:05:00Z\",\"profile\":{\"tier\":\"enterprise\",\"quota\":\"10\"}}",
"leftEndpointUrl": "",
"rightEndpointUrl": "",
"httpMethod": "GET",
"requestHeadersJson": "{}",
"requestBodyJson": "{}",
"leftLabel": "staging",
"rightLabel": "production",
"ignoreSafeDrift": true,
"useAiSemanticReview": true
}
}
}有问题或反馈?请联系 [email protected]