Connect your AI
Binary Thinkers runs a small, read-only Model Context Protocol (MCP) server. Point any MCP-capable AI client at it and your assistant can read our articles and FAQs directly — no scraping, always current.
It takes about a minute: copy the endpoint, find your app in the A–Z list, and — if it needs one — grab the matching snippet below.
Endpoint
https://binarythinkers.com/mcp/sse
Transport: Streamable HTTP. Access: public and read-only. Most apps need a paid plan.
Tools it exposes
list_recent_articles— our latest articles, newest first.search_articles— search articles by keyword.get_article— the full text of one article by its slug.list_faqs— FAQ question/answer pairs (optionally for one page).
It also exposes search + fetch, so it works with ChatGPT Deep Research.
Find your client (A–Z)
Find your app below. Where a snippet is mentioned, copy it from Config snippets further down.
- Antigravity — agent panel … → MCP Servers → View raw config
(
~/.gemini/config/mcp_config.json); add the mcpServers snippet. - ChatGPT — Settings → Connectors → Advanced → Developer mode, then add a custom connector with the endpoint URL.
- Claude / Claude Desktop — Settings → Connectors → Add custom connector; paste the URL, leave the OAuth fields blank.
- Claude Code (CLI) — run the command-line snippet.
- Codex (OpenAI) — add the Codex (TOML) snippet to
~/.codex/config.toml. - Cursor — Settings → MCP → Add new server (or
.cursor/mcp.json); add the mcpServers snippet. - Gemini — not in the consumer app; add it in Gemini Enterprise as a custom
MCP data store, or via the Gemini CLI (
~/.gemini/settings.json). - GitHub Copilot (CLI) — run the command-line snippet.
- Grok — grok.com/connectors → New Connector → Custom; paste the URL.
- Kiro —
.kiro/settings/mcp.json(workspace) or~/.kiro/settings/mcp.json(user); add the mcpServers snippet. - LM Studio — Program → Install → Edit mcp.json; add the mcpServers snippet.
- Microsoft Copilot Studio — add an MCP server by URL while building an agent.
- Mistral Le Chat — Connectors → add a custom MCP with the URL.
- Perplexity — Settings → Connectors → custom remote MCP, authentication = none.
- Qwen Code —
~/.qwen/settings.json; add the mcpServers snippet. - Visual Studio 2026 —
.mcp.jsonat the solution/repo root (or%USERPROFILE%\.mcp.json); add the servers snippet. - VS Code — MCP: Add Server from the Command Palette (or
.vscode/mcp.json); add the servers snippet. - Z.ai (GLM) — paste the URL in MCP Agent Studio, or use it from any GLM agent.
- Anything else (stdio only) — bridge with the stdio snippet.
MCP is an open standard, so any MCP-capable client works. Open models (Llama, Gemma, DeepSeek, Qwen, GLM, …) don't add connectors themselves — use them inside any client above.
Config snippets
mcpServers (Antigravity, Cursor, Kiro, LM Studio, Qwen Code, …)
{
"mcpServers": {
"binary-thinkers": {
"url": "https://binarythinkers.com/mcp/sse"
}
}
}
servers (Visual Studio 2026 & VS Code)
Microsoft's editors use the servers shape with "type": "http":
{
"servers": {
"binary-thinkers": {
"type": "http",
"url": "https://binarythinkers.com/mcp/sse"
}
}
}
Codex (TOML)
Add to ~/.codex/config.toml (or a project's .codex/config.toml):
[mcp_servers.binary-thinkers]
url = "https://binarythinkers.com/mcp/sse"
Command line (Claude Code & GitHub Copilot)
# Claude Code
claude mcp add --transport http binary-thinkers https://binarythinkers.com/mcp/sse
# GitHub Copilot CLI
copilot mcp add --transport http binary-thinkers https://binarythinkers.com/mcp/sse
stdio bridge (anything else)
Clients that only speak stdio can bridge to the server with mcp-remote:
npx mcp-remote https://binarythinkers.com/mcp/sse
Try it
Once connected, ask your assistant things like:
- “Using Binary Thinkers, list the latest articles.”
- “Search Binary Thinkers articles for ‘AI agents’.”
- “What does Binary Thinkers' FAQ say about app development?”
This server is strictly read-only — it can only read published articles and FAQs. It never exposes admin data and never performs actions.