Skip to content

Commit 30630f0

Browse files
author
Nick Iliev
committed
more mcp configurations
1 parent 5af9ac6 commit 30630f0

File tree

1 file changed

+94
-1
lines changed

1 file changed

+94
-1
lines changed

mcp-server/fiddler-mcp-server.md

Lines changed: 94 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,96 @@ To enable the Fiddler Everywhere MCP server in Cursor, follow these steps:
8787
```
8888
4. Start the Fiddler Everywhere MCP server in Cursor.
8989

90+
### Claude Code
91+
92+
To enable the Fiddler Everywhere MCP server in Claude Code, follow these steps:
93+
94+
1. Start the Fiddler Everywhere application.
95+
2. Go to **Settings > MCP Server** and complete the following:
96+
* Set the MCP server port (default value is `8868`).
97+
* Generate a unique API Key.
98+
3. In your project directory, create an `.mcp.json` file with the following configuration:
99+
100+
_example .mcp.json file for Claude Code with Fiddler Everywhere MCP server_
101+
```JSON
102+
{
103+
"mcpServers": {
104+
"fiddler": {
105+
"type": "http",
106+
"url": "http://localhost:8868/mcp",
107+
"headers": {
108+
"Authorization": "ApiKey FIDDLER_API_KEY_HERE"
109+
}
110+
}
111+
}
112+
}
113+
```
114+
Replace `FIDDLER_API_KEY_HERE` with the API key generated in step 2.
115+
4. Add `.mcp.json` to your `.gitignore` to avoid committing the API key to source control.
116+
5. Start Claude Code from your project directory. The Fiddler MCP server will be available automatically.
117+
118+
>tip Alternatively, you can register the server via the CLI: `claude mcp add --transport http fiddler http://localhost:8868/mcp -H "Authorization: ApiKey FIDDLER_API_KEY_HERE"`
119+
120+
### Claude Desktop
121+
122+
To enable the Fiddler Everywhere MCP server in Claude Desktop, follow these steps:
123+
124+
1. Start the Fiddler Everywhere application.
125+
2. Go to **Settings > MCP Server** and complete the following:
126+
* Set the MCP server port (default value is `8868`).
127+
* Generate a unique API Key.
128+
3. Open the Claude Desktop configuration file for your operating system:
129+
* **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
130+
* **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
131+
4. Add the Fiddler Everywhere MCP server entry to the `mcpServers` object. Create the file if it does not exist.
132+
133+
_example claude_desktop_config.json file with Fiddler Everywhere MCP server_
134+
```JSON
135+
{
136+
"mcpServers": {
137+
"fiddler": {
138+
"type": "http",
139+
"url": "http://localhost:8868/mcp",
140+
"headers": {
141+
"Authorization": "ApiKey FIDDLER_API_KEY_HERE"
142+
}
143+
}
144+
}
145+
}
146+
```
147+
Replace `FIDDLER_API_KEY_HERE` with the API key generated in step 2.
148+
5. Restart Claude Desktop to apply the configuration.
149+
150+
### Windsurf
151+
152+
To enable the Fiddler Everywhere MCP server in Windsurf, follow these steps:
153+
154+
1. Start the Fiddler Everywhere application.
155+
2. Go to **Settings > MCP Server** and complete the following:
156+
* Set the MCP server port (default value is `8868`).
157+
* Generate a unique API Key.
158+
3. Open the Windsurf MCP configuration file located at:
159+
* **macOS / Linux**: `~/.codeium/windsurf/mcp_config.json`
160+
* **Windows**: `%USERPROFILE%\.codeium\windsurf\mcp_config.json`
161+
4. Add the Fiddler Everywhere MCP server entry to the `mcpServers` object. Create the file if it does not exist.
162+
163+
_example mcp_config.json file in Windsurf with Fiddler Everywhere MCP server_
164+
```JSON
165+
{
166+
"mcpServers": {
167+
"fiddler": {
168+
"serverType": "http",
169+
"url": "http://localhost:8868/mcp",
170+
"headers": {
171+
"Authorization": "ApiKey FIDDLER_API_KEY_HERE"
172+
}
173+
}
174+
}
175+
}
176+
```
177+
Replace `FIDDLER_API_KEY_HERE` with the API key generated in step 2.
178+
5. Restart Windsurf or reload the MCP configuration to apply the changes.
179+
90180
## Usage
91181

92182
To use the Fiddler Everywhere MCP server:
@@ -95,7 +185,10 @@ To use the Fiddler Everywhere MCP server:
95185
2. Configure the MCP server in your IDE:
96186
* [Visual Studio Code](#visual-studio-code)
97187
* [Cursor](#cursor)
98-
* Or any other compatible IDE that supports MCP servers with tools.
188+
* [Claude Code](#claude-code)
189+
* [Claude Desktop](#claude-desktop)
190+
* [Windsurf](#windsurf)
191+
* Or any other compatible tool that supports MCP servers.
99192
3. Enable the **agent mode** in your IDE.
100193
4. Start your prompt with `#fiddler` (or with `#` followed by your custom server name, if configured).
101194

0 commit comments

Comments
 (0)