Streamable HTTPNo secret in payload

Open PlatPhormNews MCP in your editor

Connect VS Code or Cursor to the bounded local-tool profile of the canonical MCP capability projection. The install payload contains only the public endpoint; your editor will show its own trust and install confirmation before enabling the server.

VS Code
.vscode/mcp.json or MCP: Open User Configuration
One click

The official vscode:mcp/install handler hands the encoded server definition to VS Code, which opens its MCP install confirmation.

Open VS Code

Configuration fallback

{
  "servers": {
    "platphormnews": {
      "type": "http",
      "url": "https://mcp.platphormnews.com/mcp?profile=ide"
    }
  }
}
Official VS Code MCP instructions
Cursor
.cursor/mcp.json or ~/.cursor/mcp.json
One click

The Cursor deep link contains a base64-encoded server definition and opens Cursor's MCP install flow.

Open Cursor

Configuration fallback

{
  "mcpServers": {
    "platphormnews": {
      "url": "https://mcp.platphormnews.com/mcp?profile=ide"
    }
  }
}
Official Cursor MCP instructions

Codex and hosted connectors

Use the same endpoint everywhere. These configurations contain no credential; add a protected header only through your client's secret store when an operator action requires it.

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.

streamable-http
[mcp_servers.platphormnews]
url = "https://mcp.platphormnews.com/mcp?profile=ide"
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.

streamable-http
https://mcp.platphormnews.com/mcp?profile=ide
For agents

Start with intent, not the full catalog

Send a plain-English task to the public recommendation API. It returns at most 20 ranked local and source-owned federated tools with human titles, stable invocation names, input schemas, match reasons, owner evidence, and authorization guidance.

curl 'https://mcp.platphormnews.com/api/v1/model/recommend-tools?task=check%20site%20health&limit=5'

Clients can load the public PlatPhorm MCP tool-calling skill for the exact recommend, inspect, authorize, and call workflow. Aliases remain discovery-only; invoke the returned canonical name.

Canonical endpoint
https://mcp.platphormnews.com/mcp
Public boundary
Stateless server discovery, ping, tools, resources, prompts, and capability discovery are public read-only operations. Legacy initialize remains compatibility-only.
Protected actions
Mutations and operator actions still require PLATPHORM_API_KEY through a secure client secret store. The install links never embed it.