GitHub支持助手
STDIO帮助工程师查找相似GitHub问题
帮助工程师查找相似GitHub问题
An MCP server that helps support engineers find similar GitHub issues to speed up troubleshooting.
npm install
export GITHUB_TOKEN=your_github_personal_access_token
npm run build
Update the claude desktop configuration, e.g.
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
Update it to include the full path that this repository was cloned to:
{
"mcpServers": {
"find-similar-github-issues": {
"command": "node",
"args": [
"/Users/<repo_path>/build/index.js"
]
}
}
}
The server provides one tool:
Finds GitHub issues similar to a given description.
Parameters:
owner
: GitHub repository owner/organizationrepo
: GitHub repository nameissueDescription
: Description of the issue to find similar ones formaxResults
: Maximum number of similar issues to return (default: 5)This implementation uses a simple Jaccard similarity coefficient to compare text. For production use, consider implementing more sophisticated NLP techniques for better similarity matching.