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
Copy file name to clipboardExpand all lines: mcp-server/fiddler-mcp-server.md
+94-1Lines changed: 94 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,96 @@ To enable the Fiddler Everywhere MCP server in Cursor, follow these steps:
87
87
```
88
88
4. Start the Fiddler Everywhere MCP server in Cursor.
89
89
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:
0 commit comments