HTTP / SSE
Use Shredly with any MCP client that supports HTTP or Server-Sent Events (SSE) transport — including Windsurf, Continue, and the Claude CLI.
SSE endpoint
https://contextly.fastapicloud.dev/mcp/sse
Claude CLI
claude mcp add --transport sse shredly \
https://contextly.fastapicloud.dev/mcp/sse \
--header "Authorization: Bearer your-api-key-here"
Windsurf
Open Settings → MCP Servers and add:
{
"shredly": {
"serverUrl": "https://contextly.fastapicloud.dev/mcp/sse",
"headers": {
"Authorization": "Bearer your-api-key-here"
}
}
}
Continue
In your ~/.continue/config.json:
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "sse",
"url": "https://contextly.fastapicloud.dev/mcp/sse",
"requestInit": {
"headers": {
"Authorization": "Bearer your-api-key-here"
}
}
}
}
]
}
}
Generic HTTP client
For any client that supports raw HTTP MCP:
| Field | Value |
|---|---|
| Transport | SSE |
| URL | https://contextly.fastapicloud.dev/mcp/sse |
| Auth header | Authorization: Bearer <your-api-key> |