GitHub Models Helper
FreeNot checkedMCP server that lists available GitHub Models and compares responses from multiple models for the same prompt.
About
MCP server that lists available GitHub Models and compares responses from multiple models for the same prompt.
README
TypeScript MCP server that integrates with GitHub Models to list available models and compare responses across models for the same prompt. This README includes full requirements, project description, build steps, and testing flow.
Project requirements
- Node.js 18+
- GitHub account with access to GitHub Models
- GitHub Personal Access Token (PAT) with GitHub Models access
- MCP Inspector (runs via
npx)
Project description
This server exposes three MCP primitives:
- Resource:
models://available(lists available models) - Tool:
compare_models(compares model responses to the same prompt) - Prompt:
compare_models_prompt(builds a reusable comparison prompt)
Project structure
mcp-typescript-github-models-helper/
src/
githubModels.ts
index.ts
.env.template
.gitignore
package.json
tsconfig.json
Step-by-step setup
- Install dependencies
npm install
- Create
.envfrom the template
cp .env.template .env
- Add your GitHub Models token
GITHUB_TOKEN=your_github_token_here
Optional: override the API base URL in .env:
GITHUB_MODELS_API_BASE=https://models.inference.ai.azure.com
Step-by-step implementation (what the code does)
src/githubModels.ts- Fetches available models with
GET /models - Compares models with
POST /chat/completions - Uses
GITHUB_TOKENfrom.env
- Fetches available models with
src/index.ts- Creates the MCP server
- Registers the
models://availableresource - Registers the
compare_modelstool - Registers the
compare_models_promptprompt - Connects to STDIO transport
Run (development)
npm run dev
Build and run (production-style)
npm run build
npm start
Step-by-step testing with MCP Inspector
- Build the server
npm run build
- Start the Inspector
npx @modelcontextprotocol/inspector node dist/index.js
Open the URL printed by the Inspector and click Connect
Test resources
- Resources tab ->
models://available
- Resources tab ->
Test tools
- Tools tab ->
compare_models
- Tools tab ->
Test prompts
- Prompts tab ->
compare_models_prompt
- Prompts tab ->
Claude Desktop configuration
Add this to your claude_desktop_config.json and update the paths:
{
"mcpServers": {
"GitHub Models Comparison": {
"command": "node",
"args": [
"/absolute/path/to/mcp-typescript-github-models-helper/dist/index.js"
],
"env": {
"GITHUB_TOKEN": "your_github_personal_access_token"
}
}
}
}
Note: This is not secure for production. Use proper secrets management and authentication when publishing MCP servers.
Troubleshooting
Cannot find name 'process': runnpm install --save-dev @types/node.401/403 from GitHub Models: verify the PAT has GitHub Models access.- Inspector connection errors: rebuild and re-run
npx @modelcontextprotocol/inspector node dist/index.js.
from github.com/bvm-arjun108/mcp-typescript-github-models-helper
Installing GitHub Models Helper
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/bvm-arjun108/mcp-typescript-github-models-helperFAQ
Is GitHub Models Helper MCP free?
Yes, GitHub Models Helper MCP is free — one-click install via Unyly at no cost.
Does GitHub Models Helper need an API key?
No, GitHub Models Helper runs without API keys or environment variables.
Is GitHub Models Helper hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install GitHub Models Helper in Claude Desktop, Claude Code or Cursor?
Open GitHub Models Helper 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
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare GitHub Models Helper with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
