CubeCobra MCP Server
Click on "Deploy 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., "@CubeCobra MCP Servershow me the cube list for 'obc'"
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.
CubeCobra MCP Server
Local setup
npm install
npm run buildRelated MCP server: WebSim MCP Server
Running locally
npm startOr, for iterating in TypeScript:
npm run devEnvironment 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-35c3decee4aeThen start with:
env $(cat .env.local | xargs) npm run dev
# or
env $(cat .env.local | xargs) npm startMake 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.
This server cannot be deployed
Maintenance
Related MCP Connectors
Access the GitHub API, enabling file operations, repository management, search functionality, and…
Authenticated public evidence search, verification, research jobs, exports, and webhooks.
Manage SiteGPT chatbots and account resources through the SiteGPT API v2.
Access SEC filings, insider transactions, and financial data via the ShareSEER API.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceEnables interaction with the Artemis API to retrieve and analyze cryptocurrency data, including accessing metrics, generating formulas, and validating API connections.2-
- FlicenseBqualityDmaintenanceEnables interaction with WebSim's public API to browse projects, discover trending content, search assets, manage user profiles, and access community comments and discussions.25-
- FlicenseBqualityDmaintenanceEnables interaction with Chess.com's public API to retrieve player profiles and statistics including rating history and performance metrics for any Chess.com username.2-
- AlicenseNot gradedqualityDmaintenanceEnables interaction with Metabase through its API, allowing users to list cards, databases, collections, execute queries, and create cards or bookmarks.5MIT