CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
derpbicycle avatar

Game Industry Library

derpbicycle/gil-mcp-bridge
HTTPregistry active
Summary

Connects Claude to Game Industry Library's 300+ report database via hybrid search, returning claims, charts, and citations. The server lives at gameindustrylibrary.com/api/mcp and speaks streamable HTTP natively, but this bridge translates stdio for older MCP clients like legacy Claude Desktop, Cline, and Continue. Ships with OAuth (interactive browser login, 30 day sessions) or legacy bearer keys. The bridge is a thin forwarding layer: reads JSON-RPC on stdin, posts to the remote endpoint with auth headers, writes responses to stdout. Use it if your client doesn't speak HTTP transport yet, otherwise connect directly and skip the middleman.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →

gil-mcp-bridge

Stdio bridge for the Game Industry Library MCP server. Exposes the remote /api/mcp endpoint to MCP clients that only speak stdio (older Claude Desktop, Cline, Continue, custom integrations).

If your MCP client supports remote/HTTP transport (Claude Desktop ≥ 1.x, Claude.ai web, ChatGPT Connectors), you can connect directly without this bridge — see the help page for one-click connect instructions.

Install

Run directly from GitHub via npx — no install needed:

npx github:DerpBicycle/gil-mcp-bridge

Or pin a specific commit / tag:

npx github:DerpBicycle/gil-mcp-bridge#v0.1.0

Or clone + install:

git clone https://github.com/DerpBicycle/gil-mcp-bridge
cd gil-mcp-bridge
npm install   # runs prepare → tsc, then dist/ is ready
node dist/index.js

Authentication

Two options:

OAuth (recommended)

npx github:DerpBicycle/gil-mcp-bridge login

This opens your browser, registers a client via DCR, walks you through the consent screen, and stores tokens at ~/.gil/credentials.json (mode 0600, user-only). Refresh happens automatically — your session stays valid for 30 days unless you revoke it from /account → Connected Apps.

Legacy API key

GIL_API_KEY=gil_xxx npx github:DerpBicycle/gil-mcp-bridge

Get a key from /help/mcp-server (logged in). Bearer keys don't expire but you can revoke them from the same page.

Use in your MCP client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "game-industry-library": {
      "command": "npx",
      "args": ["github:DerpBicycle/gil-mcp-bridge"]
    }
  }
}

Restart Claude Desktop. On first run, the bridge will print a "no credentials" error — run npx github:DerpBicycle/gil-mcp-bridge login once to authenticate.

Cline / Continue / other VS Code clients

Same config — point the client at npx github:DerpBicycle/gil-mcp-bridge as the command.

Custom

Speak newline-delimited JSON-RPC 2.0 to stdin; receive responses on stdout. Errors and status messages go to stderr.

Commands

gil-mcp                Start the bridge (default — use this in client config)
gil-mcp login          Interactive OAuth login (stores ~/.gil/credentials.json)
gil-mcp logout         Remove stored credentials
gil-mcp status         Show current credential state
gil-mcp help           Show help

Environment variables

VariablePurposeDefault
GIL_API_KEYLegacy bearer key. Takes precedence over OAuth.—
GIL_BASE_URLOverride server URL. Useful for testing against staging or local dev.https://gameindustrylibrary.com

How it works

The bridge is a thin transport translator — ~80 lines of code per file. It reads JSON-RPC frames on stdin, forwards them as POST /api/mcp with a Authorization: Bearer header, and writes the response back to stdout. No caching, no retry, no transformation. The server does all the work.

OAuth tokens are refreshed automatically when they're within 60s of expiring (or already expired). If a refresh fails (e.g., the user revoked from /account), the bridge exits with a helpful error.

Build from source

git clone https://github.com/DerpBicycle/gil-mcp-bridge
cd gil-mcp-bridge
npm install
npm run build
node dist/index.js

Files

  • src/index.ts — CLI entry, command dispatch
  • src/bridge.ts — stdio ↔ HTTP forwarding
  • src/login.ts — OAuth interactive flow (DCR + PKCE + loopback)
  • src/credentials.ts — ~/.gil/credentials.json read/write/refresh

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Categories
Design & CreativeSearch & Web Crawling
Registryactive
TransportHTTP
UpdatedMay 1, 2026
View on GitHub

Related Design & Creative MCP Servers

View all →
com.gethumandesign.www avatar
Human Design

com.gethumandesign.www/mcp

Calculate your Human Design chart and explore how you make decisions and relationships.
tagteamdesign avatar
Lsp

com.lightsyncpro/lsp

Sync Lightroom, Figma, Dropbox & Canva assets to WordPress and Shopify via natural language.
com.pga avatar
PGA Golf

com.pga/pga-golf

PGA's official MCP Server for all things golf-related. Find a coach, play golf, improve your game.
leowan7 avatar
Ranomics Platform

com.ranomics/mcp

Wet-lab triage for AI binder-design agents. Yeast display, mammalian display, DMS at library scale.
com.scmodeling avatar
SCModeling

com.scmodeling/public

Supply-chain network design via simulation, optimization, and greenfield analysis.
webalys-hq avatar
Streamline MCP Server

com.streamlinehq/mcp

The Streamline MCP Server allow users to search, and download assets in PNG or SVG formats.