OpenCollab MCP
Provides tools for analyzing GitHub profiles (languages, topics, contribution patterns), finding beginner-friendly issues ('good first issue', 'help wanted') matched to user skills, scoring repository health and contributor-friendliness, assessing contribution readiness (setup difficulty, documentation, CI), generating PR plans from issue context, and estimating contribution impact (stars, reach, resume value) across open source projects.
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., "@OpenCollab MCPanalyze my GitHub profile and suggest good first issues"
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.
OpenCollab MCP
AI-powered open source contribution matchmaker — finds perfect "good first issues" matched to YOUR skills.
Stop scrolling through random issues. Let AI analyze your GitHub profile and find contributions you're actually qualified for, in repos that are actually maintained.
What it does
Tool | What it does |
| Analyzes your GitHub profile — languages, topics, contribution patterns |
| Finds "good first issue" / "help wanted" issues matched to your skills |
| Scores a repo's contributor-friendliness (0–100) |
| Checks setup difficulty — Dockerfile, CI, docs, templates |
| Gathers full issue context so AI can draft a PR plan |
| Finds trending repos actively seeking contributors |
| Estimates contribution impact — stars, reach, resume line |
Quick start
1. Get a GitHub token (free)
Go to github.com/settings/tokens → Generate new token (classic) → select public_repo scope → copy the token.
2. Install in Claude Desktop
Add this to your Claude Desktop config:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"opencollab": {
"command": "uvx",
"args": ["--from", "git+https://github.com/PrakharPandey/opencollab-mcp.git", "opencollab-mcp"],
"env": {
"GITHUB_TOKEN": "your_github_token_here"
}
}
}
}Restart Claude Desktop. Done!
3. Install in Cursor / VS Code
Add to .cursor/mcp.json or VS Code MCP config:
{
"mcpServers": {
"opencollab": {
"command": "uvx",
"args": ["--from", "git+https://github.com/PrakharPandey/opencollab-mcp.git", "opencollab-mcp"],
"env": {
"GITHUB_TOKEN": "your_github_token_here"
}
}
}
}4. Alternative: Install with pip
pip install git+https://github.com/PrakharPandey/opencollab-mcp.gitThen use opencollab-mcp as the command (no uvx needed):
{
"mcpServers": {
"opencollab": {
"command": "opencollab-mcp",
"env": {
"GITHUB_TOKEN": "your_github_token_here"
}
}
}
}Example conversations
"Analyze my profile and find me issues"
You: Analyze my GitHub profile (username: prakhar9999) and then find me beginner Python issues in AI/ML projects.
Claude: analyzes profile → finds matching issues → ranks by relevance
"Is this repo good to contribute to?"
You: Check if langchain-ai/langchain is a good repo to contribute to.
Claude: Health score: 85/100. Very active — last push 2 days ago, 72% PR merge rate, has CONTRIBUTING.md...
"Help me plan a PR"
You: I want to work on this issue: https://github.com/org/repo/issues/123. Generate a PR plan.
Claude: fetches issue, comments, repo structure → generates step-by-step plan
"What's the impact?"
You: How impactful would it be to contribute to facebook/react?
Claude: Impact tier: MASSIVE. 230k+ stars. Suggested resume line: "Contributed to a project used by tens of thousands of developers"
Development
# Clone
git clone https://github.com/PrakharPandey/opencollab-mcp.git
cd opencollab-mcp
# Install in development mode
pip install -e .
# Set your token
export GITHUB_TOKEN="your_token_here"
# Run directly
python -m opencollab_mcp.server
# Test with MCP Inspector
npx @modelcontextprotocol/inspector python -m opencollab_mcp.serverHow it works
User asks Claude → Claude calls OpenCollab tools → Tools fetch GitHub API → Data returns to Claude → Claude gives smart recommendationsThe MCP server is a data bridge, not an AI. It fetches and structures data from GitHub's free API. Claude (which the user already has) does all the intelligent analysis. This means:
Zero AI costs for you or your users
No API keys needed besides a free GitHub token
Works offline (STDIO transport, runs locally)
Requirements
Python 3.10+
A free GitHub Personal Access Token with
public_reposcopeAny MCP-compatible client (Claude Desktop, Cursor, VS Code, etc.)
Contributing
Contributions welcome! This project is itself a good first contribution target. Check the issues tab for tasks labeled good first issue.
License
MIT — see LICENSE.
Built by Prakhar Pandey — IIT Guwahati | AI Engineer
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/prakhar1605/Opencollab-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server