Command Palette

Search for a command to run...

UnylyUnyly
Browse all

The Game Pensieve

FreeNot checked

Read-only MCP server that proxies The Game Pensieve API over Streamable HTTP, letting AI assistants query a personal game collection via tools like search, filt

GitHubEmbed

About

Read-only MCP server that proxies The Game Pensieve API over Streamable HTTP, letting AI assistants query a personal game collection via tools like search, filters, and summaries. Supports OAuth 2.1 enforcement and owner-scoped access.

README

A read-only MCP (Model Context Protocol) server for The Game Pensieve API. It is a sidecar proxy: a separate TypeScript process that exposes MCP tools over Streamable HTTP and fulfills them by calling the existing REST API over HTTP. AI hosts (Claude Desktop, Claude Code, claude.ai connectors) connect to it to answer natural-language questions about a game collection.

The API it proxies lives in a separate repo, the-game-pensieve-api; the references below to compose.yaml, Caddyfile, keycloak/, and the realm import all point into that repo.

OAuth

When enforcing, the sidecar validates the incoming Authorization: Bearer JWT (signature via JWKS, iss, aud) with jose, publishes Protected Resource Metadata (RFC 9728) at /.well-known/oauth-protected-resource[/mcp], and challenges missing/invalid tokens with 401 + WWW-Authenticate: Bearer resource_metadata="…". Valid tokens are forwarded to the API, which independently validates them and scopes the request to the token owner (Keycloak sub → owner → RLS). Audience (aud) is validated on both sides — the sidecar and the API — to block confused-deputy replay even though the API is on a private network.

Enforcement is gated by MCP_AUTH_MODE:

Mode Behavior
auto (default) enforce iff the backend heartbeat reports secureMode=true
required always enforce (the recommended prod setting — no probe dependency)
disabled never enforce (tokenless)

In auto mode the startup heartbeat probe is retried (MCP_HEARTBEAT_RETRIES × MCP_HEARTBEAT_RETRY_DELAY_MS) so a sidecar that boots before the backend is ready doesn't latch enforcement off from a single failed probe. If the backend is still unreachable after the retries and OAuth is configured, the sidecar fails closed (enforces) rather than serving /mcp tokenless.

iss is validated against the canonical, host-facing issuer, while keys are fetched from MCP_OAUTH_JWKS_URI — the internal keycloak:8080 URL on the docker-compose network (in prod both are the public https://… URLs). /healthz and the metadata endpoints stay public.

Tools

Tool REST endpoint Purpose
get_available_filters(entityKey) GET /v1/filters/{key} Valid fields + operators for an entity
search_systems / search_toys / search_video_games / search_video_game_boxes / search_board_games / search_board_game_boxes (filters?) POST /v1/{entity}/function/search Filtered search; the entity key is injected automatically
get_custom_fields(entityKey?) GET /v1/custom_fields[/entity/{key}] Custom field definitions
get_collection_summary() GET /v1/function/counts Item counts per entity + total (computed server-side, no row transfer)
list_showcases() GET /v1/showcases Public showcases (slug + name)

All tools are read-only. Filters are { field, operator, operand } objects; call get_available_filters first to learn the valid combinations. An empty/omitted filter list returns everything.

Configuration

Env var Default Meaning
API_BASE_URL http://localhost:8080/v1 Backend base URL incl. /v1 (compose: http://backend:8080/v1)
PORT 3000 Port the /mcp endpoint listens on
API_TIMEOUT_MS 15000 Per-request timeout to the backend
MCP_AUTH_MODE auto auto | required | disabled (see OAuth section)
MCP_OAUTH_ISSUER Expected token iss (canonical, host-facing)
MCP_OAUTH_JWKS_URI JWKS URL for verification (compose: http://keycloak:8080/...)
MCP_OAUTH_AUDIENCE Expected token aud (the /mcp resource URL)
MCP_OAUTH_SCOPES pensieve:read Scopes advertised in protected-resource metadata
MCP_HEARTBEAT_RETRIES 30 auto mode: startup heartbeat probe attempts before giving up
MCP_HEARTBEAT_RETRY_DELAY_MS 2000 Delay between heartbeat probe attempts

Develop

Requires Node 20+. All configuration is via environment variables — see the table above and the annotated .env.example.

npm install
npm run dev        # tsx watch, reads .env-style vars from the environment
npm test           # vitest (hermetic; no backend needed)
npm run typecheck
npm run build && npm start

On startup the server probes GET /v1/heartbeat and logs the backend's secureMode.

For architecture, request flow, testing patterns, and how to add a tool, see documentation/DevDocumentation.md.

Connect a host

Local (tokenless)

Bring up the API in permit-all mode (default local/docker profile) — no auth, the full read surface is open:

API_BASE_URL=http://localhost:8080/v1 PORT=8090 npm start
npx @modelcontextprotocol/inspector             # point it at http://localhost:8090/mcp
# or register with a host (no token needed):
claude mcp add --transport http pensieve http://localhost:8090/mcp

Secured (OAuth 2.1)

When the backend runs the secured profile the sidecar enforces OAuth. A host discovers the authorization server from the sidecar's protected-resource metadata and runs the standard OAuth flow (DCR + authorization-code + PKCE) against Keycloak; each user only sees their own collection.

  • Claude Codeclaude mcp add --transport http pensieve https://<MCP_DOMAIN>/mcp (locally, http://localhost:8090/mcp against the secured dev stack). On first use the CLI opens the browser to Keycloak to authorize; unauthenticated calls are challenged with 401 + WWW-Authenticate.
  • claude.ai / Claude Desktop connectors — add a Custom Connector with the remote MCP URL https://<MCP_DOMAIN>/mcp. The client reads /.well-known/oauth-protected-resource, registers via DCR, and completes the PKCE login against Keycloak. (For remote hosts, pre-registering a client in Keycloak is more reliable than anonymous DCR — see keycloak/README.md in the API repo.)
  • MCP Inspector — point it at the /mcp URL; it will prompt for the OAuth flow.

The backend owner-scopes every tool call: a lapsed/guest caller gets the same 402/403 capability responses (surfaced as MCP isError results) it would from the REST API — MCP reads inherit the exact same authorization as the web app (RLS + the capability matrix), never more.

Docker / Compose

The docker-compose stack lives in the API repo, which consumes this sidecar as a published image (sethcondie/the-game-pensieve-mcp:latest) — the same way it consumes the front end. Build and push from this repo:

docker build -t sethcondie/the-game-pensieve-mcp:latest .
# multiplatform build-and-push commands: documentation/DevDocumentation.md in the API repo

Then, from the API repo:

docker compose up -d backend mcp
# MCP endpoint: http://localhost:8090/mcp

To iterate locally without a rebuild each time, run npm run dev on the host against the compose backend (API_BASE_URL=http://localhost:8080/v1 PORT=8090) instead of the mcp service.

In production (compose.production.yaml in the API repo) the sidecar has no public ports — Caddy fronts it at https://<MCP_DOMAIN>/mcp and terminates TLS. There it runs MCP_AUTH_MODE=required with the public issuer/audience URLs. See that repo's Caddyfile + .env.production.example.

Transport notes

Streamable HTTP, stateless: each POST /mcp spins up a fresh server + transport. GET/DELETE on /mcp return 405 (no server-initiated streams or sessions). GET /healthz is a liveness probe.

from github.com/sethhaskellcondie/the-game-pensieve-mcp

Installing The Game Pensieve

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/sethhaskellcondie/the-game-pensieve-mcp

FAQ

Is The Game Pensieve MCP free?

Yes, The Game Pensieve MCP is free — one-click install via Unyly at no cost.

Does The Game Pensieve need an API key?

No, The Game Pensieve runs without API keys or environment variables.

Is The Game Pensieve hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install The Game Pensieve in Claude Desktop, Claude Code or Cursor?

Open The Game Pensieve 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

Compare The Game Pensieve with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs