Skip to content

Commit 949db22

Browse files
authored
Fix doc issue (#26)
Fix some spelling and document issues.
1 parent 4ef5bde commit 949db22

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ To allow Azure CLI & VS Code to work as the client for token acquisition.
234234
| `resourceGroup` | The name of the resource group. Must contain only lowercase letters and numbers (alphanumeric). |
235235
| `clientId` | The Entra ID (Azure AD) client ID from your app registration. |
236236
| `location` | *(Optional)* The Azure region where resources will be deployed.<br/>Defaults to the resource group's location. |
237-
| `resourceLabel` | *(Optional)* A lowercase alphanumeric string used as a suffix for naming resources and as the DNS label.<br/>If not provided, it will be the resourceGroup name.<br/>**Recommendation:** Set this value as the default the same with resource group name and make sure resouce group name contains only lower alphanumeric. |
237+
| `resourceLabel` | *(Optional)* A lowercase alphanumeric string used as a suffix for naming resources and as the DNS label.<br/>If not provided, it will be the resourceGroup name.<br/>**Recommendation:** Set this value as the default the same with resource group name and make sure resource group name contains only lower alphanumeric. |
238238

239239

240240
The deployment will:

mcp-proxy-server/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ With this, you can transform **local-only MCP servers** into **cloud-accessible
2525

2626
- Configure permissions for the workload identity principal (If setting up a local mcp server)
2727
`mg-identity-<identifier>-workload`.
28-
This identity is created by deployment. The MCP server will use the workload identity for upstream resouce access.
28+
This identity is created by deployment. The MCP server will use the workload identity for upstream resource access.
2929

3030
### Proxying Local Servers
31-
For starting a local MCP server in stdio and proxying the traffice through gateway to it.
31+
For starting a local MCP server in stdio and proxying the traffic through gateway to it.
3232
Set server startup command and arguments in environment variables:
3333
- `MCP_COMMAND`
3434
- `MCP_ARGS`
@@ -38,7 +38,7 @@ Set `useWorkloadIdentity` to be true if need the server to use the workload iden
3838
> **Note:** When using a bridged local server, certain system packages may be missing by default. To address this, you can install the required packages within a custom Dockerfile and build your own `mcp-proxy` image.
3939
4040
### Proxying Remote Servers
41-
For proxying another internal mcp server hosted in streamable HTTP. Set the target ednpoint in environment variable
41+
For proxying another internal mcp server hosted in streamable HTTP. Set the target endpoint in environment variable
4242
- `MCP_PROXY_URL`
4343

4444

@@ -49,7 +49,7 @@ Example payloads to send to `mcp-gateway` using the `POST /adapters` endpoint to
4949
#### Example 1: Bridged [Azure MCP Server](https://github.com/microsoft/mcp/tree/main/servers/Azure.Mcp.Server)
5050
```json
5151
{
52-
"name": "ado-remote",
52+
"name": "azure-remote",
5353
"imageName": "mcp-proxy",
5454
"imageVersion": "1.0.0",
5555
"environmentVariables": {
@@ -58,14 +58,14 @@ Example payloads to send to `mcp-gateway` using the `POST /adapters` endpoint to
5858
"AZURE_MCP_INCLUDE_PRODUCTION_CREDENTIALS": "true",
5959
"DOTNET_SYSTEM_GLOBALIZATION_INVARIANT": "1"
6060
},
61-
"description": "Bridged ADO local MCP server"
61+
"description": "Bridged Azure local MCP server"
6262
}
6363
```
6464

6565
#### Example 2: Bridged [Azure AI Foundry MCP Server](https://github.com/azure-ai-foundry/mcp-foundry)
6666
```json
6767
{
68-
"name": "foundry",
68+
"name": "foundry-remote",
6969
"imageName": "mcp-proxy",
7070
"imageVersion": "1.0.0",
7171
"environmentVariables": {

0 commit comments

Comments
 (0)