Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This pull request addresses a bug in the mark3labs/mcp-go library by adding a new "reason" argument to the get_me tool to avoid errors when no arguments are supplied and to provide additional context for debugging.
- Added a "reason" argument with an accompanying description in the tool configuration.
- Updated the tool initialization in pkg/github/server.go to include the new argument.
Tip: Copilot only keeps its highest confidence comments to reduce noise and keep you focused. Learn more
juruen
approved these changes
Mar 14, 2025
festion
referenced
this pull request
in festion/github-mcp-server
Jul 5, 2025
Implements 18 new MCP tools for managing GitHub Projects API v2: Project Board Management (5 tools): - create_project_board: Create new project boards with templates - update_project_board: Update board settings and metadata - delete_project_board: Delete/archive project boards - list_project_boards: List accessible project boards - get_project_board: Get detailed board info and statistics Column Management (6 tools): - create_project_column: Create new columns (as Status field options) - update_project_column: Update column properties - delete_project_column: Delete columns with card archival - reorder_project_columns: Change column order - list_project_columns: List all columns in a board - get_project_column: Get column details and statistics Card Operations (7 tools): - add_card_to_project: Add issues/PRs to project boards - move_project_card: Move cards between columns - update_project_card: Update card custom fields - remove_card_from_project: Remove/archive cards - bulk_move_cards: Bulk card operations - list_project_cards: List cards with filtering (Phase 2) - get_project_card: Get card details (Phase 2) Technical details: - Uses GitHub GraphQL API v4 for all operations - Follows existing patterns with proper error handling - Includes snapshot tests for all tool definitions - Maintains read/write tool separation for permissions Resolves #12 (Phase 1) Related to Epic #8 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
DaleSeo
pushed a commit
to DaleSeo/github-mcp-server
that referenced
this pull request
Oct 24, 2025
openweather mcp
imfromfuture3000-Android
pushed a commit
to imfromfuture3000-Android/github-mcp-server
that referenced
this pull request
Mar 1, 2026
…/coral-xyz/anchor-0.32.1 Bump @coral-xyz/anchor from 0.30.1 to 0.32.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
mark3labs/mcp-golibrary has a bug where it will error when there are no arguments specified for a tool. This adds areasonargument, which works around that bug but is also somewhat helpful for debugging and potentially even returns better results because the LLM can see why it decided to call the tool.