HyperAIHyperAI

HyperAI MCP

Manage HyperAI compute containers, datasets, and models from AI tools like Claude Code and Cursor through the Model Context Protocol.

Model Context Protocol (MCP) is an open standard that lets AI applications securely connect to external services. Once an AI tool is connected to an MCP server, it can call the server's tools on your behalf — reading data, running operations, and reporting results back in the conversation.

HyperAI provides an official MCP server so that AI tools such as Claude Code and Cursor can operate the HyperAI platform directly: list and inspect your compute containers, create or stop workspaces, search datasets and models, and more — all through natural language.

The HyperAI MCP server

The HyperAI MCP server is a remote server available at:

https://mcp.hyper.ai

It uses the Streamable HTTP transport, so there is nothing to install locally — you add the URL to your MCP client, sign in with your HyperAI account in the browser, and start using it. See Connect to HyperAI MCP for client-specific setup.

What you can do

The server exposes tools in five feature groups:

GroupWhat it covers
userQuery your account profile, quota and limits, billing transactions, resource usage, and subscriptions
computeList, inspect, create, stop, and restart compute containers; manage projects, port mappings, and idle timeouts; read container metrics, README, and notebooks
resourcesSearch public projects (tutorials and community projects)
datasetSearch and inspect datasets and models, both your own and public ones; create entries, update metadata, and delete them
orgList the organizations you belong to, view organization details and seat quota, and list members

For the full list of tools and their parameters, see the MCP Tools Reference.

Authentication

The server uses OAuth 2.1 authorization. When you connect for the first time, your MCP client opens a browser window where you sign in with your HyperAI account and approve the connection. After that, every tool call runs under your own account — the AI can only see and operate the containers, projects, and datasets your account has access to.

Note

Actions performed through MCP are real operations on your account. Creating a container consumes your compute quota and balance exactly as if you had created it in the console.

Enabling only some tool groups

By default all five feature groups are enabled. If you only need a subset, append a features query parameter to the server URL when registering it:

https://mcp.hyper.ai/?features=compute,dataset

Unknown group names are ignored. This is useful for keeping the tool list small in clients where too many tools dilute the AI's attention.

Next steps