Platform

Products

Private AI infrastructure — from compute to agents.

Target groups

Use Cases

For enterprise, SMBs, and individual developers.

Knowledge & Support

Resources

Everything you need to succeed with Mycelis.

Tutorial ยท 10 min min read

Connect MCP tools in 10 minutes

Connect MCP tools in 10 minutes

Define external APIs as MCP tools and expose them directly to your model context.

Define tool

{
  "name": "weather_lookup",
  "description": "Returns weather data for a city",
  "inputSchema": {
    "type": "object",
    "properties": {
      "city": { "type": "string" }
    },
    "required": ["city"]
  }
}

Steps in Mycelis

  1. Create MCP connection.
  2. Register and test the tool.
  3. Enable tool in your agent.

Best practices

  • use short and clear tool names
  • implement explicit error handling
  • prefer idempotent tool calls