Skip to content
Merged
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
16 changes: 14 additions & 2 deletions examples/who-am-i/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,17 @@ You'll need the client ID and client secret for starting the server.

### Starting the server

Make sure to clone the repository locally: `git clone https://github.com/hyprmcp/mcp-gateway.git`
Make sure to clone the repository locally:

Make sure to change directory into `cd mcp-gateway/examples/who-am-i`.
```shell
git clone https://github.com/hyprmcp/mcp-gateway.git
````

Make sure to change into the who-am-i directory:

```shell
cd mcp-gateway/examples/who-am-i
````

Next, copy the file `.dex.secret.env.template` to `.dex.secret.env` and fill it with the client ID and client
secret of your new OAuth application.
Expand All @@ -51,6 +59,10 @@ You can also use the MCP inspector tool by running `npx @modelcontextprotocol/in
You can either log in with your GitHub account or username password authentication with
`admin@example.com` and `password`.


If you want to bypass the authentication proxy you can directly call the "Who am I?" MCP server
at `http://localhost:3000/mcp` and will see that the request is not authenticated.

## Hypr MCP Cloud

We also provide fully-managed MCP server and gateway hosting at Hypr MCP cloud, featuring
Expand Down
2 changes: 1 addition & 1 deletion examples/who-am-i/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
- .dex.secret.env

gateway:
image: ghcr.io/hyprmcp/mcp-gateway:dev # x-release-please-version
image: ghcr.io/hyprmcp/mcp-gateway:0.1.0 # x-release-please-version
command:
[
"serve",
Expand Down