Skip to main content

MCP for OCP GraphQL API

An MCP server for the Open Collective GraphQL API v2. It gives an AI assistant three tools to learn the schema, search the docs, and run read-only queries against Open Collective — without exposing any write operations.

Contents

Using with AI safely

Open Collective data includes personally identifiable information (names, emails, payout details, addresses). This server is a generic read-only GraphQL proxy — the graphql_query tool can select any field the underlying token is allowed to read, so the guardrail against leaking PII is prompt-level, not enforced in code.

  • Prefer running locally (the stdio transport below) so your data and token never leave your machine.
  • Prefer anonymous mode (no token) when you only need public data — you then only ever see what the public API exposes.
  • For exports that should stay off the model entirely (PII pulls, CSV/Markdown/PDF reports), use the ready-made local scripts indexed in reporting/README.md — you run them yourself and the results land in the gitignored reporting/output/ folder, never in an AI context.

Tokens are never logged or persisted by this server. For the full PII posture and safe field-selection guidance, see docs/using-with-ai-safely.md.

Prerequisites (one time)

Before installing the plugin you need Claude Code itself, plus a small tool called uv. Both are one-time installs.

Claude Code and VS Code

The plugin runs inside Claude Code, which needs a paid Claude plan (Pro, Max, Team, or Enterprise — the free plan doesn't include it).

The friendliest setup is Claude Code inside VS Code, a free code editor:

  1. Install VS Code (version 1.98 or newer).
  2. In VS Code, open the Extensions panel (Cmd/Ctrl+Shift+X), search for Claude Code (published by Anthropic), and click Install.
  3. Click the Claude (✱) icon and sign in with your Claude account.

Prefer the terminal — or want the claude command for the steps further down? Install the standalone CLI as well:

macOS or Linux

curl -fsSL https://claude.ai/install.sh | bash

Windows (paste into PowerShell)

irm https://claude.ai/install.ps1 | iex

The VS Code extension bundles its own copy for the chat panel, but the claude mcp add and export … && claude commands below run in a terminal and need this standalone install. Full guide: code.claude.com/docs/en/setup.

uv

Everything here runs through a tool called uv (its uvx command is what actually launches the server). You install it once. You do not need to install Python yourself — uv quietly downloads the right Python for you the first time it runs.

Open a terminal, copy the line for your computer, and paste it in:

macOS or Linux

curl -LsSf https://astral.sh/uv/install.sh | sh

Windows (paste into PowerShell)

powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

On a Mac that already has Homebrew, brew install uv works too.

Then close the terminal and open a new one (so it can find the new command) and confirm it's there:

uv --version

If that prints a version number, you're set. Full instructions: docs.astral.sh/uv.

Install — Claude Code plugin (easiest)

For Claude Code, install the plugin instead of wiring things up by hand. It ships the MCP server (stdio, via uvx), the querying skill, and an opencollective-analyst agent — all pinned to a released version. Plugins install at user scope (globally, across all your projects), which is the recommended setup:

/plugin marketplace add opensourceeurope/ose-ai
/plugin install oc-platform-mcp@ose-ai
/reload-plugins

/reload-plugins activates it right away (loading the skills, agent, and MCP server) — no need to quit; if in doubt you can also just restart Claude Code.

By default it runs anonymously — public Open Collective data only, no token. That's the safest mode and enough for most public queries.

To read non-public data you supply your own personal token, created in your Dashboard under For developers (https://opencollective.com/dashboard/<your-slug>/for-developers). The plugin's bundled config has no slot to store one, so the token reaches the server through the environment. Two options:

Authorize for one session

Export the token, then launch Claude Code from that same shell (the uvx subprocess inherits it):

export OC_PERSONAL_TOKEN=oc_xxx && claude

Authorize permanently

Register your own user-scoped server with the token baked in. It's stored in your personal ~/.claude.json (never committed to any repo). The remove makes re-running safe:

claude mcp remove -s user oc-platform-mcp 2>/dev/null
claude mcp add -s user -e OC_PERSONAL_TOKEN=oc_xxx \
  -t stdio oc-platform-mcp -- uvx mcp-for-ocp-graphql

Restart Claude Code afterwards to load it (this is a standalone server, so /reload-plugins won't pick it up). This standalone server exposes the same three tools, authenticated — it runs alongside the plugin's anonymous one, so you'll see the tools twice (redundant, not broken). If that bothers you, skip the mcp add and instead put export OC_PERSONAL_TOKEN=oc_xxx in your shell profile (~/.zshrc, ~/.bashrc): the plugin's own server then starts authenticated every session, with no second server.

Two ways to run

Local — stdio (recommended)

Runs entirely on your machine over the MCP stdio transport. A token is optional: with no token the server runs anonymously against public data; with a token it can read whatever that token is authorized for. Published to PyPI and run with uvx.

# anonymous (public data only)
uvx mcp-for-ocp-graphql

# authenticated — create a token under Dashboard → For developers
# (https://opencollective.com/dashboard/<your-slug>/for-developers)
OC_PERSONAL_TOKEN=oc_xxx uvx mcp-for-ocp-graphql

Generic MCP client config:

{
  "mcpServers": {
    "mcp-for-ocp-graphql": {
      "command": "uvx",
      "args": ["mcp-for-ocp-graphql"],
      "env": { "OC_PERSONAL_TOKEN": "oc_xxx" }
    }
  }
}

OC_PERSONAL_TOKEN is delivered to the server as a process environment variable — either via the config's env block above or exported in your shell before launch (there is no CLI flag for it). Omit it to run anonymously.

Hosted — Streamable HTTP + OAuth

Prefer stdio (above) whenever your client supports it — it's simpler and your data and token never leave your machine. Reach for the HTTP transport only if your tool speaks MCP over HTTP and cannot launch a local stdio subprocess — typically web/hosted assistants like claude.ai custom connectors or ChatGPT connectors. Desktop agents (Claude Code, Cursor, Windsurf, Zed, VS Code) all support stdio — use that.

Each user authenticates with their own Open Collective personal token via an OAuth 2.1 / PKCE passthrough (a browser form at /oc-login); the server mints no tokens of its own and stores no shared credentials.

A shared community instance is hosted for the community in the EU (Scaleway, pl-waw). Point an HTTP-only MCP client at it:

claude mcp add --transport http mcp-for-ocp-graphql \
  https://opensourceeuropeb9a9bb69-oc-graphql-mcp.functions.fnc.pl-waw.scw.cloud/mcp

On first use the client opens a browser for OAuth; paste your own Open Collective personal token. Each user authenticates independently — no shared token lives on the server.

⚠️ Please don't overuse the community instance. It's a small, cost-shared community deployment that scales to zero when idle — provided so people whose tools can't do stdio can still connect, not for heavy or automated load. If you query a lot, need guaranteed availability, or want to control the region, run stdio locally (above) or self-host your own instead.

To run your own HTTP instance, see docs/self-hosting.md (Docker + configuration reference).

The three tools

The intended flow is learn, then execute:

  1. search_docs(query, top_k=5) — keyword (BM25) search over a baked corpus of the Open Collective GraphQL guides plus a curated map of the top-level query fields (the entry points). Use this first to figure out which queries and fields you need. Each hit carries a source_url linking back to its source — deep-linked to the exact section (#anchor) where the guide chunk has one.
  2. schema_lookup(name) — exact definition of a GraphQL type or query field: its description, fields, and arguments (name, type, required, default). Substring matches return candidate names.
  3. graphql_query(query, variables=None) — execute a read-only GraphQL query and return the JSON result. Mutations and subscriptions are rejected: every operation in the document is parsed and must be a query.

Further reading

  • Using with AI safely — the PII posture and safe field-selection guidance.
  • Self-hosting — run your own hosted HTTP server via Docker, plus the full configuration reference.
  • Scaleway deployment — step-by-step walkthrough for the hosted HTTP server on Scaleway.
  • Development — local dev setup, the docs-corpus pipeline, and the release process.

Stack & credits

MIT licensed.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_for_ocp_graphql-0.9.0.tar.gz (274.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_for_ocp_graphql-0.9.0-py3-none-any.whl (148.9 kB view details)

Uploaded Python 3

File details

Details for the file mcp_for_ocp_graphql-0.9.0.tar.gz.

File metadata

  • Download URL: mcp_for_ocp_graphql-0.9.0.tar.gz
  • Upload date:
  • Size: 274.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mcp_for_ocp_graphql-0.9.0.tar.gz
Algorithm Hash digest
SHA256 d8429b6c2ab803fa6888ab814e5daf0f19361a250583842fcf72c767d16da77f
MD5 455edf699bf9c14c713214bb85be1767
BLAKE2b-256 7258adfc4107e92f4f5cebce9e0ebd62572156a325c796134867c64aeaaa4db7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_for_ocp_graphql-0.9.0.tar.gz:

Publisher: release.yml on opensourceeurope/mcp-for-ocp-graphql

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_for_ocp_graphql-0.9.0-py3-none-any.whl.

File metadata

File hashes

Hashes for mcp_for_ocp_graphql-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3a3dc8ba3072906d4f79e2aea0220ca13d8626a6bf235e0a75b1c9ea516d933c
MD5 ee1779f06b4562f994ea07dd2deef6b9
BLAKE2b-256 01596b5d2ba81ec85e1ec2a10f4cdad6814cbda71341832c3234f9a6af0c6bee

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_for_ocp_graphql-0.9.0-py3-none-any.whl:

Publisher: release.yml on opensourceeurope/mcp-for-ocp-graphql

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.12.0

2 files

0.11.0

2 files

0.10.0

2 files

This release

0.9.0 This release

2 files

0.8.1

2 files

0.8.0

2 files

0.7.0

2 files

0.6.2

2 files

0.6.1

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.3

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page