Postman
Add Cakewalk's MCP Gateway to a Postman MCP request via JSON configuration. Postman handles the OAuth handshake automatically on first capability load.
Last updated
Was this helpful?
Add Cakewalk's MCP Gateway to a Postman MCP request via JSON configuration. Postman handles the OAuth handshake automatically on first capability load.
Postman supports remote MCP servers over Streamable HTTP. Paste the Cakewalk gateway URL as JSON in a new MCP request and click Load Capabilities. Postman registers an OAuth client against Cakewalk's gateway via Dynamic Client Registration, opens a browser for sign-in, and lists the gateway's tools in the request tab.
JSON config. Postman accepts an MCP server JSON blob in a new MCP request. The url-only shape works with Cakewalk because the gateway supports Dynamic Client Registration.
Open Postman.
Choose an existing workspace or create a new one.
In the left sidebar, click the Add icon, then MCP. Postman opens a new MCP request in a new tab.
Choose HTTP as the server's communication method (Streamable HTTP).
Paste the following JSON configuration:
{
"mcpServers": {
"cakewalk": {
"url": "https://mcp-gateway.getcakewalk.io/mcp"
}
}
}Click Load Capabilities.
If Postman prompts you to grant the local access it requests, accept. Postman then opens your default browser to the Cakewalk OAuth consent page. Sign in with your Cakewalk account and approve the Connection. Postman registers the OAuth client with Cakewalk's gateway via Dynamic Client Registration and stores the resulting token on the request.
Click Save and choose a collection. Saved MCP requests are reusable across runs and shareable with workspace collaborators.
After Load Capabilities completes, Cakewalk's tools appear in the Tools tab of the MCP request. Select a tool, define its arguments, and click Run to call it. In Cakewalk, the Postman card on My Agents flips to Connected after the first agent call.
If you prefer not to paste a JSON blob, you can use the form instead:
Choose HTTP as the communication method.
Enter https://mcp-gateway.getcakewalk.io/mcp in the URL field.
Click Load Capabilities and complete the OAuth flow as above.
The server name in the JSON config (cakewalk in the example) is a display label only. You can rename it to anything; Postman will use that label as the request title.
Load Capabilities times out: verify the gateway URL exactly matches the one in Cakewalk's Set Up Flow and that your network allows outbound HTTPS to mcp-gateway.getcakewalk.io.
Browser does not open for OAuth: check that Postman has permission to launch your default browser. Re-run Load Capabilities to retry.
Tools list looks empty: the OAuth flow may have completed but the capability load returned no tools. Re-run Load Capabilities, and confirm that your Cakewalk Connection is approved.
Create an MCP request for your collection from Postman.
Last updated
Was this helpful?
Was this helpful?