Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions content/en/sdks/mcp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Callout, Tabs } from 'nextra/components'
# MCP Server (AI Assistants)

<Callout type="info">
SharpAPI includes a built-in MCP server at `https://api.sharpapi.io/mcp` — connect Claude Desktop, Claude Code, or any MCP-compatible AI assistant to query live odds and opportunities through natural language.
SharpAPI includes a built-in MCP server at `https://mcp.sharpapi.io/mcp` — connect Claude Desktop, Claude Code, or any MCP-compatible AI assistant to query live odds and opportunities through natural language.
</Callout>

## What is MCP?
Expand All @@ -34,7 +34,7 @@ Edit `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) o
"mcpServers": {
"sharpapi": {
"type": "streamable-http",
"url": "https://api.sharpapi.io/mcp",
"url": "https://mcp.sharpapi.io/mcp",
"headers": {
"X-API-Key": "sk_live_..."
}
Expand All @@ -55,7 +55,7 @@ Add to your Claude Code MCP settings:
"mcpServers": {
"sharpapi": {
"type": "streamable-http",
"url": "https://api.sharpapi.io/mcp",
"url": "https://mcp.sharpapi.io/mcp",
"headers": {
"X-API-Key": "sk_live_..."
}
Expand All @@ -69,7 +69,7 @@ Add to your Claude Code MCP settings:

Any MCP client that supports Streamable HTTP transport can connect:

- **Endpoint:** `POST https://api.sharpapi.io/mcp`
- **Endpoint:** `POST https://mcp.sharpapi.io/mcp`
- **Auth:** `X-API-Key` header, `Authorization: Bearer` header, or `api_key` query parameter
- **Protocol:** JSON-RPC 2.0 over HTTP (MCP Streamable HTTP transport)
- **Version:** `2025-03-26`
Expand Down