The Game Pensieve MCP
Click on "Install 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., "@The Game Pensieve MCPSearch my video games for RPGs released after 2015"
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.
The Game Pensieve — MCP Sidecar
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 |
| enforce iff the backend heartbeat reports |
| always enforce (the recommended prod setting — no probe dependency) |
| 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.
Related MCP server: GPT MCP Service
Tools
Tool | REST endpoint | Purpose |
|
| Valid fields + operators for an entity |
|
| Filtered search; the entity |
|
| Custom field definitions |
|
| Item counts per entity + total (computed server-side, no row transfer) |
|
| 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 |
|
| Backend base URL incl. |
|
| Port the |
|
| Per-request timeout to the backend |
|
|
|
| — | Expected token |
| — | JWKS URL for verification (compose: |
| — | Expected token |
|
| Scopes advertised in protected-resource metadata |
|
|
|
|
| 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 startOn 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/mcpSecured (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 Code —
claude mcp add --transport http pensieve https://<MCP_DOMAIN>/mcp(locally,http://localhost:8090/mcpagainst the secured dev stack). On first use the CLI opens the browser to Keycloak to authorize; unauthenticated calls are challenged with401 + 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 — seekeycloak/README.mdin the API repo.)MCP Inspector — point it at the
/mcpURL; 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 repoThen, from the API repo:
docker compose up -d backend mcp
# MCP endpoint: http://localhost:8090/mcpTo 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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceA read-only Model Context Protocol server for Valve's public Steam Web API and storefront. Ask about your friends and games, playtime and achievements, plus account-independent things like sales, reviews, live player counts, Steam Deck compatibility, discovery, and recommendations — bring your own free Steam API key.Last updated372MIT
- Flicense-qualityBmaintenancePrivate OAuth-backed MCP server for ChatGPT, supporting GPT Apps via MCP Streamable HTTP and GPT Actions via REST endpoints with OpenAPI 3.1.Last updated
- Alicense-qualityDmaintenanceA feature-rich Model Context Protocol server that gives AI assistants full access to your Steam game library.Last updated203MIT
- Alicense-qualityBmaintenanceAn MCP server that exposes your Steam, Epic Games Store, and IGDB game data as tools, enabling game library queries, install status checks, and metadata enrichment.Last updated1MIT
Related MCP Connectors
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
Official remote MCP server for Archivist AI TTRPG campaign memory: characters, sessions, and more.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
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/sethhaskellcondie/the-game-pensieve-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server