GitHub Portfolio MCP Server
Provides tools for querying a GitHub user's public profile, repositories, languages, and README content, enabling AI agents to retrieve and analyze GitHub data.
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., "@GitHub Portfolio MCP ServerWhat is the language breakdown for bdbrown4's repos?"
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.
GitHub Portfolio MCP Server
An MCP (Model Context Protocol) server that exposes tools for AI agents to query a GitHub user's public profile, repositories, languages, and README content.
Tools
Tool | Description |
| List all public repositories with optional fork filtering and sorting |
| Get detailed info about a repo including its full README |
| Get language breakdown (with percentages) for a repository |
| Get the GitHub user's public profile (bio, location, stats) |
| Search repos by keyword across names, descriptions, and topics |
| Aggregate languages and topics across all original repos |
Related MCP server: GitHub MCP Server
Resources
Resource | URI | Description |
Profile |
| Full GitHub profile JSON |
README |
| README content for any repo |
Setup
npm install
npm run buildUsage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"github-portfolio": {
"command": "node",
"args": ["C:/dev/github-portfolio-mcp-server/dist/index.js"]
}
}
}Usage with VS Code (GitHub Copilot)
Add to your .vscode/mcp.json or user settings:
{
"servers": {
"github-portfolio": {
"command": "node",
"args": ["C:/dev/github-portfolio-mcp-server/dist/index.js"]
}
}
}Optional: Higher Rate Limits
Set a GitHub Personal Access Token to avoid the 60 req/hour unauthenticated limit:
{
"mcpServers": {
"github-portfolio": {
"command": "node",
"args": ["C:/dev/github-portfolio-mcp-server/dist/index.js"],
"env": {
"GITHUB_TOKEN": "ghp_your_token_here"
}
}
}
}Example
Here's the list_repos tool in action inside VS Code with GitHub Copilot, listing all 18 original (non-forked) public repos sorted by most recently updated:

Development
npm run dev # Watch mode — recompiles on change
npm run build # One-time compile
npm start # Run the server (stdio)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
- AlicenseAqualityDmaintenanceEnables AI assistants to access and analyze GitHub profile data, providing insights on repositories, commit history, coding patterns, and generating portfolio summaries for developers and recruiters.Last updated82MIT
- AlicenseAquality-maintenanceEnables AI agents to interact with GitHub repositories through the GitHub REST API for managing files, issues, and repository metadata. It supports both read operations like searching code and write operations such as creating repositories and updating issue comments.Last updated9
- Flicense-qualityDmaintenanceEnables fetching public repositories for a given GitHub username, returning curated data optimized for LLM context windows.Last updated
- Alicense-qualityDmaintenanceEnables AI assistants to analyze GitHub repositories, including fetching repository details, searching, and retrieving README content.Last updated5731ISC
Related MCP Connectors
Give your agent live data from Twitter, Reddit, the web and GitHub. No API keys, no scraping stack.
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Connect AI assistants to your GitHub-hosted Obsidian vault to seamlessly access, search, and analy…
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/bdbrown4/github-portfolio-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server