Platform
Private AI infrastructure — from compute to agents.
Target groups
For enterprise, SMBs, and individual developers.
Knowledge & Support
Everything you need to succeed with Mycelis.
Integration
The Model Context Protocol (MCP) enables models to call external tools and APIs. Use the Mycelis MCP Library or connect your own services.
What is the Model Context Protocol?
MCP (Model Context Protocol) is an open protocol that allows language models to call defined tools—APIs, database queries, filesystem access, and calculations.
The model decides when to call a tool, executes it, and integrates the result into its answer. Without MCP, model knowledge is limited to its training cutoff.
MCP Library — ready-to-use tools
Live search results directly in context. No outdated training data.
PostgreSQL, MySQL, SQLite—model writes and executes queries.
Read repositories, create issues, and comment on PRs.
Google Calendar, Outlook—read, create, and manage events.
Read and send messages, search channels.
Any HTTP APIs—with or without authentication.
Connect your own tools — code example
# Define the tool in the Mycelis dashboard or via API
tool = {
"name": "get_product_price",
"description": "Returns the current price of a product",
"input_schema": {
"type": "object",
"properties": {
"product_id": {"type": "string", "description": "Product ID"}
},
"required": ["product_id"]
},
# Mycelis calls this URL when the model uses the tool
"endpoint": "https://your-api.example.com/products/{product_id}/price"
}Frequently asked questions
MCP Library available instantly. Connect your own tools in minutes.
Start for free