meshive-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@meshive-mcpShow me the available GPU types and their hourly prices."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
meshive-mcp
Remote MCP server for the Meshive GPU Cloud. Connect it to Claude Code, Codex, Cursor, or any MCP-capable agent and manage your Meshive account, workspaces, pods, storage, GPUs, templates, serverless deployments, and hosted machines in natural language.
The server is a thin tool layer over the meshive Python
SDK. It holds no state and stores no credentials: your API key travels in the request header and
is forwarded to the Meshive API as-is.
Connect your agent
You need a Meshive API key. Create one in the console
(workspace Settings → Secret). Keys look like meshive_ followed by 64 characters.
The server URL is https://mcp.meshive.ai/mcp. Every client below sends the key as
Authorization: Bearer <key>.
Claude Code
claude mcp add --transport http meshive https://mcp.meshive.ai/mcp \
--header "Authorization: Bearer meshive_..."Codex CLI — add to ~/.codex/config.toml:
[mcp_servers.meshive]
url = "https://mcp.meshive.ai/mcp"
bearer_token_env_var = "MESHIVE_API_KEY"and export MESHIVE_API_KEY=meshive_... in your shell.
Cursor / other mcp.json clients
{
"mcpServers": {
"meshive": {
"url": "https://mcp.meshive.ai/mcp",
"headers": { "Authorization": "Bearer meshive_..." }
}
}
}See docs/clients.md for more clients and for stdio-only clients.
Related MCP server: Partiri Cloud MCP Server
Tools
All tools in this version are read-only. gpus also works without an API key (prices only).
Tool | What it does |
| Who the key belongs to, credit balance |
| List workspaces, or one workspace with cost summary and members |
| List pods in a workspace, or one pod (optionally with live metrics) |
| Storage volumes of a workspace |
| GPU types available to rent with hourly prices |
| Pod templates you can launch from |
| Serverless model deployments |
| Serverless one-off GPU jobs |
| Asset Hub datasets, models, adapters, outputs |
| Machines you host, with earnings and live metrics |
| Credit top-ups and refunds, or host earnings by day |
Lists are paged (20 per call by default, 100 max) with an opaque cursor. Errors come back as
{"code", "message", "next_step"} so the agent knows what to do next.
Run it yourself
pip install .
meshive-mcp # HTTP on 127.0.0.1:8080, endpoint /mcp, health at /healthz
meshive-mcp --transport stdio # local stdio for development; reads MESHIVE_API_KEYEnvironment variables:
Variable | Meaning |
| Meshive API base URL (defaults to production) |
| HTTP bind address |
| Comma-separated |
| Fallback key, stdio mode only |
Docker (public image, built from the real branch):
docker run -p 8080:8080 meshive/meshive-mcpOr build it yourself with docker build -t meshive-mcp ..
Development
python -m venv .venv && . .venv/bin/activate
pip install -e ".[dev]"
pytestThe test suite drives the tools through an in-process MCP client and through the HTTP transport with a fake SDK client, so it needs no network and no API key.
License
Apache-2.0
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP-first control plane for ProAgentStore agents and private instances.
Manage SRG+ hubs, channels, content, assets, users, and workspaces from any MCP-aware AI agent.
MCP commerce surface for compute credits, API keys, GPU instances, and cloud storage.
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
Related MCP Servers
- FlicenseBqualityNot gradedmaintenanceEnables AI agents to administer MetaMCP instances by managing servers, namespaces, endpoints, and API keys across multiple deployments. Supports full CRUD operations, bulk server imports, cross-instance cloning, and granular tool management through MetaMCP's tRPC API.261-
- AlicenseAqualityBmaintenanceMCP server for the Partiri Cloud PaaS platform. Enables AI agents to manage workspaces, projects, services, deployments, and metrics.231MIT
- AlicenseAqualityAmaintenanceEnables MCP clients to manage and orchestrate autonomous agents, budgets, and multi-agent workflows within the OpenMesha agentic operating system.91Apache 2.0
- AlicenseNot gradedqualityBmaintenanceEnables AI agents and MCP clients to manage AutoDL GPU instances programmatically, including creating, listing, powering on/off, executing commands, transferring files, and enforcing automatic shutdown.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/meshive/meshive-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server