Back to client

Client Profiles

Current, client-specific setup instructions for the public Streamable HTTP gateway. Browse tools, resources, prompts, and network connections without configuring a secret.

Codex CLI, IDE, and ChatGPT desktop
~/.codex/config.toml or .codex/config.toml

Add the TOML block, restart the client, then use /mcp to inspect the bounded local tool profile.

[mcp_servers.platphormnews]
url = "https://mcp.platphormnews.com/mcp?profile=ide"
Official setup reference
Visual Studio Code
.vscode/mcp.json or MCP: Open User Configuration

Save mcp.json, start the server from the editor, and review the trust prompt before enabling tools.

{
  "servers": {
    "platphormnews": {
      "type": "http",
      "url": "https://mcp.platphormnews.com/mcp?profile=ide"
    }
  }
}
Official setup reference
Cursor
.cursor/mcp.json or ~/.cursor/mcp.json

Save mcp.json, open Cursor settings, and enable only the tools needed for the current workflow.

{
  "mcpServers": {
    "platphormnews": {
      "url": "https://mcp.platphormnews.com/mcp?profile=ide"
    }
  }
}
Official setup reference
Claude remote connector
Claude > Customize or Organization settings > Connectors

Choose Add custom connector, paste the remote MCP URL, review its permissions, and enable only relevant tools.

https://mcp.platphormnews.com/mcp?profile=ide
Official setup reference
Generic Streamable HTTP client
Client-specific MCP server configuration

Connect with stateless Streamable HTTP and call server/discover. Legacy initialize remains available for compatible 2025-era clients; no Mcp-Session-Id is required between requests.

{
  "name": "platphormnews",
  "transport": "streamable-http",
  "url": "https://mcp.platphormnews.com/mcp"
}
Official setup reference