A Model Context Protocol (MCP) for numerous third-party software and third-party APIs. Once deployed, this service can offer enhanced support for your AI platform, such as enabling you to use Dofi to complete your platform
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"open-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
English Version
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP Security Weekly
Get CVE alerts and security updates for Open Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Open-MCP-Server 是一个支持模型上下文协议(Model Context Protocol, MCP)的服务框架,旨在简化企业系统与AI平台的集成,为AI系统提供业务数据支持。本框架原生兼容各类开放API、内部系统API、Dubbo接口等多协议接入,赋能AI系统实现定制化需求。
POST /api/test
Content-Type: application/json
{
"apiUrl": "http://api.example.com/data",
"method": "GET",
"cookie": "session=abc123",
"requestData": "{\"param1\": \"value1\"}"
}
功能说明:
POST /api/generate
Content-Type: application/json
{
"apiUrl": "http://api.example.com/data",
"method": "GET",
"packagePath": "com.open.mcp.server.api",
"apiName": "ExampleApi",
"requestData": "{\"param1\": \"value1\"}",
"responseData": "{\"result\": \"success\"}"
}
POST /api/download
Content-Type: application/json
{
"apiUrl": "http://api.example.com/data",
"method": "GET",
"packagePath": "com.open.mcp.server.api",
"apiName": "ExampleApi",
"requestData": "{\"param1\": \"value1\"}",
"responseData": "{\"result\": \"success\"}"
}
功能说明:
GET /ai-assistant/ai/ask?question=你的问题
POST /ai-assistant/session/create
POST /ai-assistant/session/chat
Content-Type: application/x-www-form-urlencoded
sessionId=xxx&message=用户消息&systemPrompt=系统提示词
GET /ai-assistant/session/history?sessionId=xxx
POST /ai-assistant/session/clear
Content-Type: application/x-www-form-urlencoded
sessionId=xxx&reset=true
功能说明:
GET /ai/generate?message=生成内容
GET /ai/generateStream?message=生成内容
GET /ai/mcp?message=使用工具的问题
功能说明:
# 获取服务列表
GET /api/http/list
# 获取单个服务
GET /api/http/{id}
# 创建服务
POST /api/http/save
Content-Type: application/json
# 更新服务
PUT /api/http/{id}
Content-Type: application/json
# 删除服务
DELETE /api/http/{id}
# 获取服务列表
GET /api/dubbo/list
# 获取单个服务
GET /api/dubbo/{id}
# 创建服务
POST /api/dubbo/save
Content-Type: application/json
# 更新服务
PUT /api/dubbo/{id}
Content-Type: application/json
# 删除服务
DELETE /api/dubbo/{id}
# 获取服务列表
GET /api/grpc/list
# 获取单个服务
GET /api/grpc/{id}
# 创建服务
POST /api/grpc/save
Content-Type: application/json
# 更新服务
PUT /api/grpc/{id}
Content-Type: application/json
# 删除服务
DELETE /api/grpc/{id}
# 获取服务列表
GET /api/soap/list
# 获取单个服务
GET /api/soap/{id}
# 创建服务
POST /api/soap/save
Content-Type: application/json
# 更新服务
PUT /api/soap/{id}
Content-Type: application/json
# 删除服务
DELETE /api/soap/{id}
# 获取连接列表
GET /api/registry/list
# 获取单个连接
GET /api/registry/{id}
# 创建连接
POST /api/registry/save
Content-Type: application/json
# 更新连接
PUT /api/registry/{id}
Content-Type: application/json
# 删除连接
DELETE /api/registry/{id}
# 分页查询
GET /api/registry/page?connectionName=xxx®istryType=xxx&host=xxx&pageNum=1&pageSize=10
# 批量保存
POST /api/registry/batch-save
Content-Type: application/json
# 批量删除
POST /api/registry/batch-delete
Content-Type: application/json
POST /api/setLanguage
Content-Type: application/json
{
"language": "zh_CN"
}
# 工具名称: getDubboServiceInfo
# 参数说明:
{
"
... [View full README on GitHub](https://github.com/changsong/open-mcp-server#readme)