What is Arcanna MCP Server: Unmatched Performance, Seamless Scalability?
Arcanna MCP Server is a high-performance middleware enabling users to integrate with Arcanna’s AI models via the Model Context Protocol (MCP). It provides enterprise-grade scalability and reliability for deploying decision-making workflows, event processing, and iterative model training. Key strengths include real-time job management, feedback-driven accuracy improvements, and robust API status validation.
How to use Arcanna MCP Server: Unmatched Performance, Seamless Scalability?
Option 1: uvx Command-Line Setup
- Install uv CLI
- Edit your MCP client config file (e.g., claude_desktop_config.json) with this block:
{
"mcpServers": {
"arcanna": {
"command": "uvx",
"args": ["arcanna-mcp-server"],
"env": {
"ARCANNA_INPUT_API_KEY": "your_input_api_key",
"ARCANNA_MANAGEMENT_API_KEY": "your_management_api_key",
"ARCANNA_HOST": "your_host_url",
"ARCANNA_USER": "your_username"
}
}
}}
Option 2: Docker Deployment
- Install Docker
- Build the container:
docker build -t arcanna-mcp .
- Configure Docker run command in your MCP client:
{
"mcpServers": {
"arcanna-docker": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "ARCANNA_INPUT_API_KEY", "..."],
"env": {
// fill with your credentials
}
}
}}