Tiger GitHub MCP server
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"tiger-gh": {
"env": {
"GITHUB_ORG": "timescale",
"GITHUB_TOKEN": "ghp_whatever"
},
"args": [
"/absolute/path/to/tiger-gh-mcp-server/dist/index.js",
"stdio"
],
"command": "node"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A wrapper around the GitHub API to provide some focused tools to LLMs via the Model Context Protocol.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Manage Supabase projects — databases, auth, storage, and edge functions
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
MCP Security Weekly
Get CVE alerts and security updates for Tiger Gh Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A wrapper around the GitHub API to provide some focused tools to LLMs via the Model Context Protocol.
Cloning and running the server locally.
git clone git@github.com:timescale/tiger-gh-mcp-server.git
This project uses bun as its runtime and package manager. A
wrapper script (./bun) is included that downloads a pinned version of bun on
first use, so you don't need to install it globally.
Run ./bun install to install dependencies. Use ./bun run watch http to run
the server in HTTP mode and reload on changes.
You will need a GitHub token with the correct scopes. Here is a direct link to create such a new token.
Create a .env file based on the .env.sample file.
cp .env.sample .env
Then update the GITHUB_TOKEN value in .env.
The project includes a VS Code debug profile called "Debug Github MCP" that launches the server in HTTP mode with full debugging support, running the TypeScript source directly via bun.
To use it:
Breakpoints will work properly in TypeScript source files thanks to source map support.
The MCP Inspector is a very handy to exercise the MCP server from a web-based UI.
./bun run inspector
| Field | Value |
|---|---|
| Transport Type | STDIO |
| Command | ./bun |
| Arguments | src/index.ts |
Create/edit the file ~/Library/Application Support/Claude/claude_desktop_config.json to add an entry like the following, making sure to use the absolute path to your local tiger-gh-mcp-server project, and use a valid GitHub token.
{
"mcpServers": {
"tiger-gh": {
"command": "/absolute/path/to/tiger-gh-mcp-server/bun",
"args": [
"/absolute/path/to/tiger-gh-mcp-server/src/index.ts",
"stdio"
],
"env": {
"GITHUB_TOKEN": "ghp_whatever",
"GITHUB_ORG": "timescale"
}
}
}
}