summarize-url
POST
/api/v1/summarize-url
1 credits/call
examples
web
Fetch a URL and return a title + preview snippet. 1 credit per call.
Sign in + create an API key on the keys page to authenticate calls.
curl -X POST https://api.fulcrumgo.com/api/v1/summarize-url \
-H "Authorization: Bearer mcpsk_<your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"url": "",
"max_preview_chars": 280
}'
Add this server to Claude Desktop's claude_desktop_config.json. The endpoint becomes a callable tool inside Claude. See the MCP setup guide for the full walk-through.
{
"mcpServers": {
"this-api": {
"url": "https://api.fulcrumgo.com/mcp",
"transport": "http",
"auth": {
"type": "bearer",
"token": "mcpsk_<your_api_key>"
}
}
}
}
Inside Claude this endpoint surfaces as the tool summarize-url.
Standard requests — no custom SDK needed. pip install requests first.
import requests
r = requests.post(
"https://api.fulcrumgo.com/api/v1/summarize-url",
headers={"Authorization": "Bearer mcpsk_<your_api_key>"},
json={
"url": "",
"max_preview_chars": 280
},
)
r.raise_for_status()
print(r.json())
Plain fetch. Works in Node 18+, Deno, Bun, and any modern browser.
const r = await fetch("https://api.fulcrumgo.com/api/v1/summarize-url", {
method: "POST",
headers: {
"Authorization": "Bearer mcpsk_<your_api_key>",
"Content-Type": "application/json",
},
body: JSON.stringify({
"url": "",
"max_preview_chars": 280
}),
});
if (!r.ok) throw new Error(`HTTP ${r.status}`);
console.log(await r.json());
Input
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| url | string | required | — |
HTTP(S) URL to fetch and summarize.
maxLength=2083
minLength=1
format=uri
|
| max_preview_chars | integer | optional | 280 |
Plaintext preview cap. Default 280 (~tweet length).
maximum=2000
minimum=40
|
Output
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| url | string | required | — | |
| title | string | required | — | |
| description | string | required | — | |
| preview | string | required | — | |
| bytes_fetched | integer | required | — | |
| content_type | string | required | — |
Try it
Fires a real POST /api/v1/summarize-url from your browser. Charges 1 credit per call against your account.