@@ -86,37 +86,28 @@ Claude Desktop supports MCP connections through its configuration file.
8686</TabItem >
8787<TabItem value = " claude-code" label = " Claude Code" >
8888
89- Claude Code (claude.ai) supports MCP through browser-based configuration.
89+ Claude Code CLI supports MCP through the ` .mcp.json ` configuration file .
9090
9191### Setup Steps
9292
93- 1 . Visit [ claude.ai] ( https://claude.ai )
94- 2 . Click on your profile icon → Settings
95- 3 . Navigate to Developer → MCP Settings
96- 4 . Click "Add Server" and configure:
97-
98- ``` json
99- {
100- "name" : " mission-control" ,
101- "type" : " http" ,
102- "url" : " https://mc.<org-id>.workload-prod-eu-02.flanksource.com/mcp" ,
103- "headers" : {
104- "Authorization" : " Basic YOUR_TOKEN_HERE"
93+ 1 . Create or edit the ` .mcp.json ` file in your project root or home directory
94+ 2 . Add the Mission Control MCP server configuration:
95+ ``` json title=".mcp.json"
96+ {
97+ "mcpServers" : {
98+ "mission-control" : {
99+ "name" : " mission-control" ,
100+ "type" : " http" ,
101+ "url" : " https://mc.<org-id>.workload-prod-eu-02.flanksource.com/mcp" ,
102+ "headers" : {
103+ "Authorization" : " Bearer YOUR_TOKEN_HERE"
104+ }
105+ }
106+ }
105107 }
106- }
107- ```
108-
109- 5 . Click "Save" and refresh the page
110- 6 . Mission Control tools will be available in new conversations
111-
112- ### Alternative Setup (via URL)
113-
114- You can also connect by visiting:
115- ```
116- https://claude.ai/settings/mcp?server=mission-control&url=https://mc.<org-id>.workload-prod-eu-02.flanksource.com/mcp
117- ```
118-
119- Then add your authorization token in the settings.
108+ ```
109+ 3 . Save the file and restart Claude Code
110+ 4 . Mission Control tools will be available in your sessions
120111
121112</TabItem >
122113<TabItem value = " vscode-copilot" label = " VS Code Copilot" >
0 commit comments