Open MCP Server
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
Overview
Open MCP Server is a service framework that supports the Model Context Protocol (MCP), designed to facilitate integration between various systems and AI platforms, enhancing the capabilities of AI systems by providing business data.
To use Open MCP Server, deploy the service by configuring it with the necessary parameters and integrating it with your desired APIs. You can run the server using Java with the provided command structure.
- Unified adaptation of public/private APIs (including RESTful, gRPC, Dubbo) - Context-aware data orchestration for AI workflows - Extensible architecture for bespoke business logic - Compatibility with heterogeneous systems for tailored AI solutions.
- Integrating various third-party APIs to enhance AI functionalities.
- Streamlining data orchestration for AI-driven applications.
- Customizing AI solutions to meet specific business requirements.
Add to your AI client
Use these steps to connect Open MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"open-mcp-server-changsong": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-mcp-server-changsong"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"open-mcp-server-changsong": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-mcp-server-changsong"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"open-mcp-server-changsong": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-mcp-server-changsong"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"open-mcp-server-changsong": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-mcp-server-changsong"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"open-mcp-server-changsong": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-mcp-server-changsong"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"open-mcp-server-changsong": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-mcp-server-changsong"
]
}
}
}FAQ
What is the Model Context Protocol (MCP)?
MCP is a protocol designed to facilitate the integration of AI systems with various data sources and APIs.
Is Open MCP Server free to use?
Yes! Open MCP Server is licensed under the MIT License, allowing free use, modification, and distribution.
How can I add new third-party APIs?
You can contact the author for integration with additional public APIs or software systems.