You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New Bit workspaces get a root .mcp.json file with the bit-cloud MCP server entry. This repository did not have the file.
This change adds the file to the repository root. The content is the same as the content that bit init writes. AI agents such as Claude Code read this file and connect to the Bit Cloud MCP server at https://mcp.bit.cloud/mcp.
Add root .mcp.json configuring the Bit Cloud MCP server
⚙️ Configuration changes🕐 Less than 5 minutes
AI Description
• Add root .mcp.json so AI agents can discover MCP server configuration.
• Configure the "bit-cloud" MCP server to use the Bit Cloud HTTP endpoint.
Diagram
graph TD
A["AI agent"] --> B[".mcp.json"] --> C{{"Bit Cloud MCP"}}
C --> D["https://mcp.bit.cloud/mcp"]
subgraph Legend
direction LR
_agent["Client/Agent"] ~~~ _cfg["Config file"] ~~~ _ext{{"External service"}} ~~~ _url["Endpoint"]
end
Loading
High-Level Assessment
Adding the standard root .mcp.json (matching bit init) is the simplest and most discoverable approach for MCP-capable agents. Alternatives like per-developer local config or documentation-only guidance reduce reliability and automation.
Files changed (1) +8 / -0
Other (1) +8 / -0
.mcp.jsonAdd MCP server config for Bit Cloud+8/-0
Add MCP server config for Bit Cloud
• Introduces a repository-root .mcp.json defining the "bit-cloud" MCP server. Configures an HTTP MCP endpoint at https://mcp.bit.cloud/mcp for agent auto-discovery.
The newly added .mcp.json has no trailing newline, which violates the repo-wide EditorConfig
setting and can cause persistent diffs when editors auto-insert the final newline on save.
.editorconfig requires a final newline for all files, but the newly added .mcp.json content ends
immediately after the closing brace (the diff also flags the missing newline), which commonly leads
to auto-fix churn.
The issue below was found during a code review. Follow the provided context and guidance below and implement a solution
## Issue description
The PR adds `.mcp.json` without a final newline (as indicated by the diff), conflicting with the repository’s EditorConfig policy.
## Issue Context
This repo’s `.editorconfig` sets `insert_final_newline = true`, so files without a trailing newline often get auto-corrected by editors, creating recurring “dirty working tree” diffs.
## Fix Focus Areas
- .mcp.json[1-8]
- .editorconfig[5-11]
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
The newly added .mcp.json has no trailing newline, which violates the repo-wide EditorConfig
setting and can cause persistent diffs when editors auto-insert the final newline on save.
.editorconfig requires a final newline for all files, but the newly added .mcp.json content ends
immediately after the closing brace (the diff also flags the missing newline), which commonly leads
to auto-fix churn.
The issue below was found during a code review. Follow the provided context and guidance below and implement a solution
## Issue description
The PR adds `.mcp.json` without a final newline (as indicated by the diff), conflicting with the repository’s EditorConfig policy.
## Issue Context
This repo’s `.editorconfig` sets `insert_final_newline = true`, so files without a trailing newline often get auto-corrected by editors, creating recurring “dirty working tree” diffs.
## Fix Focus Areas
- .mcp.json[1-8]
- .editorconfig[5-11]
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
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
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.
New Bit workspaces get a root
.mcp.jsonfile with the bit-cloud MCP server entry. This repository did not have the file.This change adds the file to the repository root. The content is the same as the content that
bit initwrites. AI agents such as Claude Code read this file and connect to the Bit Cloud MCP server athttps://mcp.bit.cloud/mcp.