NetworkExperiments Claude Desktop Config
Add the NetworkExperiments MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your credentials in the
envsection - Restart Claude Desktop
Configuration JSON
Copy the entire block into your claude_desktop_config.json
{
"mcpServers": {
"azure-com-frontdoor-networkexperiment": {
"command": "npx",
"args": [
"-y",
"@mcp/azure-com-frontdoor-networkexperiment"
],
"env": {
"NETWORKEXPERIMENTS_API_KEY": "your_networkexperiments_api_key"
}
}
}
}Environment Variables
NETWORKEXPERIMENTS_API_KEYReplace your_networkexperiments_api_key with your actual networkexperiments api key
Endpoints
GET
/subscriptions/{subscriptionId}/providers/Microsoft.Network/NetworkExperimentProfilesGets a list of Network Experiment Profiles under a subscription
GET
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/NetworkExperimentProfilesGets a list of Network Experiment Profiles within a resource group under a subscription
GET
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/NetworkExperimentProfiles/{profileName}Gets an NetworkExperiment Profile by ProfileName
PUT
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/NetworkExperimentProfiles/{profileName}Creates an NetworkExperiment Profile
DELETE
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/NetworkExperimentProfiles/{profileName}Deletes an NetworkExperiment Profile by ProfileName
PATCH
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/NetworkExperimentProfiles/{profileName}Updates an NetworkExperimentProfiles by NetworkExperimentProfile name
GET
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/NetworkExperimentProfiles/{profileName}/ExperimentsGets a list of Experiments
GET
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/NetworkExperimentProfiles/{profileName}/Experiments/{experimentName}Gets an Experiment by ExperimentName
PUT
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/NetworkExperimentProfiles/{profileName}/Experiments/{experimentName}Creates or updates an Experiment
DELETE
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/NetworkExperimentProfiles/{profileName}/Experiments/{experimentName}Deletes an Experiment