Weik.io Integration Expert: MCP Server
MCP server for the Apache Camel based Weik.io Integration Platform
Overview
MCP Server is a Model Context Protocol server designed for the Weik.io Integration Platform, which assists developers throughout the integration lifecycle, from planning to deployment.
To use MCP Server, you can run it via Docker or use it as an npm package with npx. Configuration can be done through JSON files for Docker or directly via command line for npm.
- Provides tools for planning, implementation, testing, and deployment of integrations. - Supports Docker-based and NPX-based configurations. - Offers integration type decision support and best practices guidance. - Includes tools for local Weik.io management and external tool integration.
- Assisting developers in creating and managing integration flows.
- Providing decision support for selecting appropriate integration types.
- Facilitating testing and debugging of integration processes.
- Streamlining deployment of integrations to Weik.io instances.
Add to your AI client
Use these steps to connect Weik.io Integration Expert: 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": {
"mcp-server-weikio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weikio"
]
}
}
}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": {
"mcp-server-weikio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weikio"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-weikio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weikio"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-weikio": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weikio"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-weikio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weikio"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-weikio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weikio"
]
}
}
}FAQ
Can MCP Server be used for all types of integrations?
Yes! MCP Server supports various integration types including Apache Camel based flows and managed file transfers.
Is MCP Server free to use?
Yes! MCP Server is open source and free to use.
How can I run MCP Server?
You can run MCP Server using Docker or as an npm package with npx.