Add an SSE MCP server

mcp tools

// what it does

Some hosted MCP servers stream over Server-Sent Events; register them with --transport sse and the server's --url. Linear's project-management server is a common one, added with its public SSE endpoint, which then exposes issue create, search, and update tools to Grok.

// shell

$ grok mcp add linear --transport sse --url "https://mcp.linear.app/sse"

// gotcha

The transport type must match what the server actually speaks — pointing --transport http at an SSE endpoint, or vice versa, fails to connect. Check the provider's docs for the right transport and URL.

// resources