subcue-mcp
SubcueAI Public MCP Server
SubcueAI (the real-time AI interview assistant for macOS & Windows) ships a public, unauthenticated, read-only Model Context Protocol server. Any AI agent can query live product data — pricing, latest desktop version, product overview, FAQ — instead of scraping HTML.
Endpoint:
POST https://subcue.ai/mcpTransport: streamable-http (single JSON response), JSON-RPC 2.0, MCP protocol
2025-06-18Auth: none. Writes: none — the server is strictly read-only.
Server card:
https://subcue.ai/.well-known/mcp/server-card.json
This repository documents the server and provides ready-to-run client examples. The server itself runs on Cloudflare Workers as part of the SubcueAI website.
Quick start
# List tools
curl -s https://subcue.ai/mcp -X POST -H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
# Live pricing
curl -s https://subcue.ai/mcp -X POST -H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_pricing"}}'Sample get_pricing output (live data, abridged):
# SubcueAI Pricing
## Starter — free
- Standard AI model
- Mock interview practice
## Pro — $20/mo; $16/mo when billed yearly ($192/yr)
...Related MCP server: OpenAI-Compatible MCP Gateway
Tools
Tool | Arguments | Returns |
| — | Current subscription plans and pricing (Markdown) |
|
| Latest desktop app version, release date, download URL |
Resources
URI | Content |
| What SubcueAI is, key features, links (Markdown) |
| Frequently asked questions (Markdown) |
Use resources/list / resources/read per the MCP spec.
Connect from popular clients
Claude Code
claude mcp add --transport http subcue https://subcue.ai/mcpCursor / any client using mcp.json
{
"mcpServers": {
"subcue": { "url": "https://subcue.ai/mcp" }
}
}claude.ai — Settings → Connectors → Add custom connector → https://subcue.ai/mcp.
Stdio-only clients — this repo ships a zero-dependency stdio ⇄ HTTP bridge (bridge/server.mjs, Node 18+):
claude mcp add subcue -- node /path/to/subcue-mcp/bridge/server.mjs
# or containerised:
docker build -t subcue-mcp . && docker run -i subcue-mcpExamples in this repo
examples/list-tools.sh— curl walkthrough of every methodexamples/client.mjs— zero-dependency Node.js clientexamples/client.py— zero-dependency Python client
Other machine-readable entry points
SubcueAI publishes a full agent-facing surface beyond MCP:
Endpoint | What it is |
Plain-text site & product summary for language models | |
RFC 9727 linkset of public JSON APIs | |
Agent Skills discovery index | |
Agent skill: how to fetch SubcueAI public data | |
| Any public marketing/legal page returns Markdown instead of HTML |
Notes for agent developers
Responses are deterministic JSON-RPC; notifications (
notifications/*) are accepted and return202with no body.Data is live (pricing and versions come from the same source of truth as the website) — prefer these endpoints over scraping rendered HTML.
Rate limiting applies at the edge; be a good citizen.
Send a descriptive
User-Agent— default library UAs (e.g.Python-urllib/3.x) are rejected by edge bot protection with a403.
License
Documentation and examples: MIT © 2026 Subcue AI LLC.
This server cannot be installed
Maintenance
Related MCP Servers
- FlicenseBqualityDmaintenanceProvides a complete end-to-end MCP server implementation with file system tools, web scraping capabilities, and system information access. Includes ready-to-use configuration files and integration examples for Claude Desktop, ChatGPT, and other AI models.6
- Flicense-qualityDmaintenanceLocal MCP server that exposes fixed tools for GPT, Claude, and Gemini while routing to any OpenAI-compatible chat completions backend with independent configuration per target.1
- Alicense-qualityAmaintenancePublic read-only MCP server for turva.dev's agent-readiness audit, enabling AI agents to query service catalog, security evidence, and engagement principles via structured JSON.1MIT
- AlicenseBqualityCmaintenanceRead-only MCP server exposing Desktop Mate directory listings, official links, and FAQ to AI clients like Claude Desktop.2MIT
Related MCP Connectors
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Hosted MCP server exposing US hospital procedure cost data to AI assistants
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/Subcue/subcue-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server