Skip to main content

Set Up Other Clients

Preview

The MCP server is currently in preview. All configurations below point to api-preview.stoxiio.com.

The Stoxiio MCP server uses standard Streamable HTTP transport, which means it works with any MCP‑compatible client. Below are configuration examples for popular tools.

Cursor

Cursor supports MCP servers natively. Add the configuration in Cursor Settings → MCP.

Project‑level configuration

Create a .cursor/mcp.json file at the root of your project:

{
"mcpServers": {
"stoxiio": {
"type": "http",
"url": "https://api-preview.stoxiio.com/mcp",
"headers": {
"X-Api-Key": "stx_your_api_key_here"
}
}
}
}

Global configuration

Create or edit ~/.cursor/mcp.json:

{
"mcpServers": {
"stoxiio": {
"type": "http",
"url": "https://api-preview.stoxiio.com/mcp",
"headers": {
"X-Api-Key": "stx_your_api_key_here"
}
}
}
}

After adding the configuration, restart Cursor. You should see the Stoxiio tools in the agent tools list.

Windsurf

Windsurf (by Codeium) supports MCP servers. Add the configuration in the MCP settings:

Create or edit ~/.codeium/windsurf/mcp_config.json:

{
"mcpServers": {
"stoxiio": {
"serverUrl": "https://api-preview.stoxiio.com/mcp",
"headers": {
"X-Api-Key": "stx_your_api_key_here"
}
}
}
}

Generic MCP Client

For any MCP client that supports HTTP transport, use these connection details:

ParameterValue
TransportStreamable HTTP (with SSE fallback)
URLhttps://api-preview.stoxiio.com/mcp
AuthenticationHeader: X-Api-Key: stx_your_key
Required scopeRead
tip

Always check your client's documentation for the exact configuration format — the MCP ecosystem is evolving rapidly and config formats may vary between clients and versions.

Storing your API key securely

All the clients above store the API key in plaintext JSON files. To protect your key using environment variables or your OS credential store (macOS Keychain, Windows Credential Manager), see:

👉 Storing Your Key Securely