Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ mcp.json configuration for local development:
# Use in mcp.json
{
"servers": {
"Azure MCP Server": {
"azure-mcp-server": {
"command": "docker",
"args": ["run", "-i", "--rm", "--env-file", "/path/to/.env", "azure-sdk/azure-mcp:<version-number-of-docker-image>"]
}
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ Update your mcp.json to point to the locally built azmcp executable.
```json
{
"servers": {
"Azure MCP Server": {
"azure-mcp-server": {
"url": "https://localhost:1031/",
"type": "http"
}
Expand Down Expand Up @@ -481,7 +481,7 @@ To build a local image for testing purposes:
```json
{
"servers": {
"Azure MCP Server": {
"azure-mcp-server": {
"command": "docker",
"args": [
"run",
Expand Down
4 changes: 2 additions & 2 deletions llms-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The Azure MCP Server requires configuration based on the client type. Below are
```json
{
"servers": {
"Azure MCP Server": {
"azure-mcp-server": {
"command": "npx",
"args": [
"-y",
Expand All @@ -50,7 +50,7 @@ The Azure MCP Server requires configuration based on the client type. Below are
```json
{
"mcpServers": {
"Azure MCP Server": {
"azure-mcp-server": {
"command": "npx",
"args": [
"-y",
Expand Down
20 changes: 10 additions & 10 deletions servers/Azure.Mcp.Server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ To verify the .NET version, run the following command in the terminal: `dotnet -
```json
{
"mcpServers": {
"Azure MCP Server": {
"azure-mcp-server": {
"command": "dnx",
"args": [
"Azure.Mcp",
Expand All @@ -196,13 +196,13 @@ To verify the .NET version, run the following command in the terminal: `dotnet -
```json
{
"mcpServers": {
"Azure MCP Server": {
"command": "npx",
"args": [
"-y",
"@azure/mcp@latest",
"server",
"start"
"azure-mcp-server": {
"command": "npx",
"args": [
"-y",
"@azure/mcp@latest",
"server",
"start"
]
}
}
Expand All @@ -218,7 +218,7 @@ To verify the .NET version, run the following command in the terminal: `dotnet -
```json
{
"mcpServers": {
"Azure MCP Server": {
"azure-mcp-server": {
"command": "uvx",
"args": [
"--from",
Expand Down Expand Up @@ -386,7 +386,7 @@ AZURE_CLIENT_SECRET={YOUR_AZURE_CLIENT_SECRET}
```json
{
"mcpServers": {
"Azure MCP Server": {
"azure-mcp-server": {
"command": "docker",
"args": [
"run",
Expand Down
6 changes: 3 additions & 3 deletions servers/Azure.Mcp.Server/TROUBLESHOOTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -968,7 +968,7 @@ To use Azure Entra ID with the Docker image update the MCP client configuration
```json
{
"mcpServers": {
"Azure MCP Server": {
"azure-mcp-server": {
"command": "docker",
"args": [
"run",
Expand Down Expand Up @@ -997,7 +997,7 @@ On Windows, Azure CLI stores credentials in an encrypted format that cannot be a
```json
{
"mcpServers": {
"Azure MCP Server": {
"azure-mcp-server": {
"command": "docker",
"args": [
"run",
Expand Down Expand Up @@ -1349,7 +1349,7 @@ This starts the MCP server in **remote HTTP mode** with the following configurat
```json
{
"servers": {
"Azure MCP Server": {
"azure-mcp-server": {
"url": "https://localhost:1031/",
"type": "http"
}
Expand Down