Open
Conversation
- package.json: Dependencies and npm scripts - tsconfig.json: TypeScript strict mode, ES2022 - eslint.config.js: ESLint 9 flat config Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Implements issue #4: Basic MCP server - src/index.ts: CLI entry point with commander - src/server.ts: MCP server setup with stdio transport - src/auth/token-storage.ts: Keytar integration for token storage - src/auth/oauth-device-flow.ts: OAuth Device Flow (Phase 2 prep) Supports GITHUB_TOKEN env var for authentication. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Implements issue #5: Core tools Tool categories (~68 tools): - repos: 20 tools (list, get, create, fork, branches, commits, releases) - issues: 17 tools (list, get, create, update, comments, labels, milestones) - pulls: 15 tools (list, get, create, merge, review, comments) - users: 16 tools (get, followers, following, keys, emails) Naming convention: github_<category>_<method> Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Expands tool coverage (~66 more tools): - actions: 20 tools (workflows, runs, jobs, artifacts, secrets) - gists: 17 tools (list, get, create, fork, comments) - orgs: 22 tools (members, teams, invitations) - search: 7 tools (repos, code, issues, users, commits, topics) Total: ~134 tools across 8 categories Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Stub implementations for webhook event handling: - src/webhooks/event-queue.ts: Event storage and retrieval - src/webhooks/smee-client.ts: smee.io client integration - src/resources/webhooks.ts: MCP resources for events Required for server.ts imports. Full implementation in Phase 4. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Tests for: - Token storage mocking - Tool registration and structure - Tool naming convention validation - Event queue functionality Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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.
Summary
Closes #4
Closes #5
Changes
MCP Server (#4)
src/index.ts: CLI entry with commander (start, auth commands)src/server.ts: MCP server setup with stdio transportsrc/auth/: Token storage (keytar) and OAuth prepCore Tools (#5)
Naming Convention
github_<category>_<method>(e.g.,github_repos_list)Test plan
npm install && npm run buildsucceedsnpm run typecheckpassesGITHUB_TOKEN=xxx npm startstarts server🤖 Generated with Claude Code