CubeCobra Server
FreeNot checkedMCP server for CubeCobra that enables fetching cube lists, CSV, JSON, plaintext, and record data. It supports optional authentication for private endpoints and
About
MCP server for CubeCobra that enables fetching cube lists, CSV, JSON, plaintext, and record data. It supports optional authentication for private endpoints and configurable base URL.
README
Fork of plrdev/cubecobra-mcp by Juha Linnanen (2025-12-05). This repository extends the original server with additional tooling and fixes (see git history); all original work and credit belongs to the upstream author.
License: ISC (matching the upstream
package.json; see LICENSE).
Local setup
npm install
npm run build
Running locally
npm start
Or, for iterating in TypeScript:
npm run dev
Environment configuration
The server uses optional environment variables:
CUBECOBRA_BASE_URL— override the base URL (defaults tohttps://cubecobra.com).CUBECOBRA_COOKIE— your CubeCobra session cookie (needed for private/owner-only endpoints).CUBECOBRA_CSRF— CSRF token to accompany the cookie for POSTs.DEFAULT_CUBE_SHORT_ID— fallback short ID for cube tools (list/csv/json/plaintext).DEFAULT_CUBE_ID— fallback cube UUID for records tools.DEFAULT_RECORD_ID— fallback record ID for record page/data tools.
Persisting secrets locally
To avoid retyping these on every run, create a local env file (not committed) and load it when you start the server. For example, create .env.local in the project root:
CUBECOBRA_BASE_URL=https://cubecobra.com
CUBECOBRA_COOKIE=connect.sid=...; othercookies=...
CUBECOBRA_CSRF=your-csrf-token
DEFAULT_CUBE_SHORT_ID=obc
DEFAULT_CUBE_ID=6178df6d-867d-4b54-b7ed-ff940daf26aa
DEFAULT_RECORD_ID=318ecd53-6cc7-4489-9408-35c3decee4ae
Then start with:
env $(cat .env.local | xargs) npm run dev
# or
env $(cat .env.local | xargs) npm start
Make sure .env.local is in your .gitignore to keep secrets out of version control.
Notes on CubeCobra auth
- Auth is only required for endpoints like
list_cube_records; public tools (list, csv, json, plaintext) work without auth. - The CSRF token can be copied from the
x-csrf-tokenheader of a successful POST in the browser’s Network tab when logged in.
Installing CubeCobra Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/andrewanderson/cubecobra-mcpFAQ
Is CubeCobra Server MCP free?
Yes, CubeCobra Server MCP is free — one-click install via Unyly at no cost.
Does CubeCobra Server need an API key?
No, CubeCobra Server runs without API keys or environment variables.
Is CubeCobra Server hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install CubeCobra Server in Claude Desktop, Claude Code or Cursor?
Open CubeCobra Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare CubeCobra Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
