Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ“Š Data Visualization
  3. Game Industry Library
G
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:24:44 PM

Game Industry Library

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Search 300+ game industry reports with hybrid search, claims, charts, and citations.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "game-industry-library": {
      "command": "npx",
      "args": [
        "-y",
        "game-industry-library"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ“Š More in Data Visualization

Documentation Overview

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:

Terminal
npx github:DerpBicycle/gil-mcp-bridge

Or pin a specific commit / tag:

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

Or clone + install:

bash
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)

Terminal
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

bash
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):

config.json
{
  "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

Code
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

bash
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

Related MCP Servers

View all in Data Visualization View all alternatives
  • Mindpilot Mcp logoMindpilot Mcp

    Visualizes code, architecture and other concepts as mermaid diagrams in a locally hosted web app. Just ask your agent to "show me this in a diagram".

    πŸ“Š Data Visualization3 views
    Compare vs Mindpilot Mcp β†’
  • N
    Ng Blatui

    ng-blatui for Angular β€” search components, blocks, charts & templates and read their typed API.

    πŸ“Š Data Visualization0 views
    Compare vs Ng Blatui β†’
  • M
    Mcp

    Generate, edit, and export data-architecture diagrams from your AI. Column lineage, PNG in chat.

    πŸ“Š Data Visualization0 views
    Compare vs Mcp β†’
  • Chartforge logoChartforge

    MCP server for ChartForge β€” generate stunning charts and diagrams from natural language

    πŸ“Š Data Visualization0 views
    Compare vs Chartforge β†’

Frequently Asked Questions about Game Industry Library

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "game-industry-library": { "command": "npx", "args": ["-y", "Game Industry Library"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewGame Industry Library AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/game-industry-library?style=directory)](https://allmcps.com/mcp/game-industry-library)
HTML Embed
<a href="https://allmcps.com/mcp/game-industry-library"><img src="https://allmcps.com/api/badge/game-industry-library?style=directory" alt="Game Industry Library on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ“ŠData Visualization
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/5 checks healthy over the last 7h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ“Š Data Visualization β†’Alternatives to Game Industry Library β†’Install in Claude DesktopInstall in CursorInstall in VS Code