An MCP server that provides LLMs with the ability to use GitHub issues as tasks
An MCP server that provides LLMs with the ability to use GitHub issues as the task to complete. This server allows LLMs to fetch GitHub issue details and use them as task descriptions.
npx mcp-github-issue
To install MCP GitHub Issue Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install mcp-github-issue --client claude
Add to your MCP configuration:
{
"mcpServers": {
"github-issue": {
"command": "npx",
"args": ["mcp-github-issue"]
}
}
}
Fetches GitHub issue details to use as a task.
Input Schema:
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "GitHub issue URL (https://github.com/owner/repo/issues/number)"
}
},
"required": ["url"]
}
Example Usage:
<use_mcp_tool>
<server_name>github-issue</server_name>
<tool_name>get_issue_task</tool_name>
<arguments>
{
"url": "https://github.com/owner/repo/issues/123"
}
</arguments>
</use_mcp_tool>
Response Format:
{
"task": {
"title": "Issue Title",
"description": "Issue Description/Body",
"source": "https://github.com/owner/repo/issues/123"
}
}
## Install dependencies
npm install
## Build the project
npm run build
## Run the server locally
npm run serve
## Format code
npm run format
## Run MCP inspector
npm run inspector
MIT
Sam McLeod (https://smcleod.net)
Math Mcp
A Model Context Protocol (MCP) server that provides basic mathematical and statistical functions to Large Language Models (LLMs). This server enables LLMs to perform accurate numerical calculations through a simple API.
Mcp Github Issue
An MCP server that provides LLMs with the ability to use GitHub issues as tasks
Gitlab Kanban Mcp Server
GitLabのカンバンボード操作を行うためのMCPサーバー
Model Context Protocol server for file modifications and control
An MCP server for analyzing open source projects and assisting with codebase integration
Claude Server is an MCP implementation that enhances Claude's capabilities by providing sophisticated context management across sessions, enabling persistent knowledge organization through hierarchical project contexts and continuous conversation threads stored in a well-structured ~/.claude directory.