Connect to pre-built, hosted MCP servers with one line of code. No infrastructure to manage, instant access to powerful tools.
Just add the URL
We manage everything
OAuth & encryption
Low latency everywhere
from mythicdot import MythicDot
client = MythicDot()
# Connect to a remote MCP server
response = client.responses.create(
model="mythic-4",
input="Create an issue in the acme/frontend repo about the login bug",
tools=[
{
"type": "mcp",
"server_label": "github",
"server_url": "https://mcp.mythicdot.ai/github",
"require_approval": "never"
}
]
)
print(response.output_text)
# The model will automatically call the create_issue tool
# and return the created issue URL
Connect to powerful tools with one line of code.