feat: Add GitHub Actions CI workflow for build checks#2
Merged
Conversation
- Fixed syntax errors in src/server.ts introduced by a previous edit. - Added examples for GitHub Pull Request creation and CI status checking to the 'code' tool description in src/server.ts and README.md. - Removed all references to the 'options.tools' parameter from README.md to align with its removal from the codebase. - Updated CHANGELOG.md to reflect these documentation and example enhancements.
github-actions bot
referenced
this pull request
in mkXultra/claude-code-mcp
Jan 20, 2026
# 1.0.0 (2026-01-20) ### Bug Fixes * Apply npm pkg fix for bin path ([e47140d](e47140d)) * Remove commented-out debug logs from server.ts ([1ef44bb](1ef44bb)) * rm not use param ([ad9670c](ad9670c)) * update tests to match current implementation ([2aa7758](2aa7758)) * use VITEST env check for test detection and add createTestClient helper ([84fa153](84fa153)) ### Features * Add CHANGELOG and finalize server ([c50a6bb](c50a6bb)) * add CWD to code prompt and bump version to 1.1.0 ([b62c9c2](b62c9c2)) * add Gemini CLI support to MCP server ([a9942bc](a9942bc)) * Add GitHub Actions CI workflow for build checks ([#2](#2)) ([613c0cb](613c0cb)) * add process cleanup tool and simplify list output ([cc03323](cc03323)) * add semantic-release with npm trusted publishing ([ffdf7c8](ffdf7c8)) * add wait tool ,support gemini 3.9 and continue conversation gemini ([5d249ca](5d249ca)) * Codex セッション再開機能とMCP設定ファイルの追加 ([d02b329](d02b329)) * Finalize server with dynamic path finding and JSON output ([6c3c410](6c3c410)) * Integrate CWD parsing from prompt, fix lint errors ([5113edb](5113edb)) * Organize screenshots, enhance CI, and clean up Git tracking ([7bbc42d](7bbc42d)) * Refine server, JSON parsing, docs, and metadata ([4ab9a7f](4ab9a7f)) * Resolve npm link, ESM import, and MCP config issues ([7b0cc83](7b0cc83)) * **server:** Prepend system instruction to Claude prompts for broader file access context ([08b9f2d](08b9f2d)) * **server:** Release v1.6.0 - Updates timeout, changelog, error handling, and description ([4382617](4382617)) * **server:** Release v1.6.0 - Updates timeout, changelog, error handling, and description ([855be94](855be94)) * support codex for gpt5 ([e3111d8](e3111d8)) * Unify tools into agentic 'code' tool (v1.4.0) ([87c6704](87c6704)) * update 'code' tool description in server.ts for clarity and power ([dfd2327](dfd2327))
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.
This PR introduces a GitHub Actions workflow (.github/workflows/ci.yml) that runs on pushes and PRs to the main branch. It checks out the code, installs dependencies, and runs npm run build to ensure the project compiles successfully. This will help prevent accidental build breakages.