Test Your MCP Bridge
Overview
With the bridge deployed, you’ll verify it’s working using Postman’s native MCP client. Postman supports the MCP protocol directly — you can connect to your bridge, discover tools, and invoke them interactively without writing any code.
Find your bridge URL
- Go to MCP Servers →
PhotoMCPServer - Click Instances → click the Instance ID
- Copy the Consumer Endpoint URL and append
/mcp— it will look like:https://<your-gateway-host>/<base-path>/mcp
Keep this URL handy for the steps below.
Step 1 — Connect Postman to the MCP Bridge
- Open Postman
- In the left sidebar, click New → MCP Request (or go to File → New MCP Request)
- In the Server URL field, paste your Consumer Endpoint URL with
/mcpappended - Set the Transport to
Streamable HTTP - Click Connect
Postman will establish an MCP session with the bridge. Once connected, you’ll see the session status change to Connected.
Step 2 — Discover available tools
Once connected, click the Tools tab in the Postman MCP view.
Postman automatically calls tools/list and displays each tool with its name, description, and input schema. You should see both tools listed:
| Tool name | Description |
|---|---|
list_photos |
Returns a paginated list of photos in the catalog |
get_photos_id |
Returns the full details of a single photo |
Note: Tool names will match what you set during the MCP tools step. If you renamed them, they’ll appear under those names.
If you see both tools listed, your bridge is discoverable. ✓
Step 3 — Call the list photos tool
- Click
list_photosin the Tools list - Postman displays the tool’s input schema. Fill in the parameters:
album:1id:1
- Click Run Tool
The bridge maps id to the ?id= query parameter, album to the ?album= parameter, and calls GET <upstream-url>/photos?album=1&id=1. Postman displays the response in the output panel.
Expected response shape:
[
{ "albumId": 1, "id": 1, "title": "...", "url": "...", "thumbnailUrl": "..." },
{ "albumId": 1, "id": 2, "title": "...", "url": "...", "thumbnailUrl": "..." },
{ "albumId": 1, "id": 3, "title": "...", "url": "...", "thumbnailUrl": "..." }
]
Step 4 — Call the get photo details tool
- Click
get_photoin the Tools list - Fill in the parameter:
id:1
- Click Run Tool
The bridge maps id to the URI path and calls GET <upstream-url>/photos/1. You should see the full details for photo ID 1 returned.
Troubleshooting
Postman can’t connect
- Confirm the Consumer Endpoint URL is correct (no trailing characters, correct base path)
- Verify the MCP Server instance Status shows Active
- Check Runtimes → Runtime Manager → Omni Gateways — your gateway should show Running
Tools tab is empty
- The bridge may still be starting up — disconnect, wait 30 seconds, and reconnect
- Check the instance Configuration Status — should show Up to date
Tool call returns an error
- Verify the upstream URL in the bridge configuration is reachable
- Check that the
Target URLset during instance creation (https://jsonplaceholder.typicode.com/) is accessible
What you’ve verified
- Postman connects to the MCP Bridge successfully
- Both tools appear in the Tools tab
get_photosreturns a list of photosget_photos_idreturns details for photo ID1
All four checked? Your MCP Bridge is fully operational.
Continue to Securing the MCP Bridge →