Feature · MCP

Built for AI agents.

Every Stekpad verb is an MCP tool. From day one. Reads are free. Errors are typed. Your agent never blocks for more than 60 seconds.

What it means

First-class, not bolted-on.

A first-class MCP server is one where the MCP surface is shipped at launch, not bolted on later. Stekpad’s MCP server is built from the same engine as the REST API. There is no second-class wrapper. There is no “MCP tier” with a delayed feature set. If a verb works in REST, it works in MCP, with the same shape, the same costs, the same errors.

How it works

The eight tools.

ToolMaps toCost
scrapePOST /v1/scrape1 cr
crawlPOST /v1/crawl1 cr / page
mapPOST /v1/map1 cr / 1k URLs
extractPOST /v1/extract5 cr / URL
searchPOST /v1/search5 cr + 1 / result
list_datasetsGET /v1/datasets0
get_datasetGET /v1/datasets/:id0
query_datasetGET /v1/datasets/:id/rows0

Reads are free. Always. An agent should never hit the paywall just to remember what it scraped yesterday.

Built for agents

Four properties that matter to a loop.

Never blocks for 60s

Long-running operations return a run_id and the tool yields. The agent decides when to check.

Typed errors

Every error has a code, a message, and a retry_after.

Per-call credit reporting

Every tool response includes credits_charged so the model can budget itself.

API key only

No OAuth dance inside the MCP client. Paste a stkpd_live_... token in the config once.

Examples

Install in three clients.

Claude Desktop

claude_desktop_config.json
json
{
"mcpServers": {
"stekpad": {
"command": "npx",
"args": ["-y", "@stekpad/mcp"],
"env": { "STEKPAD_API_KEY": "stkpd_live_..." }
}
}
}

Cursor: same config in ~/.cursor/mcp.json. See /integrations/cursor.

Claude Code:

terminal
bash
claude mcp add stekpad -- npx -y @stekpad/mcp

Hosted HTTP MCP: connect to https://mcp.stekpad.com with Authorization: Bearer stkpd_live_....

A first prompt

Research and remember in 15 credits.

Search for “open source vector databases 2026”, scrape the top 5 results, save them to a dataset called “Vector DB research”, and summarize each in one paragraph.

Claude calls search (with scrape_results: true), then ai_summary over the new rows. The whole exchange costs about 15 credits and you can come back to the dataset tomorrow at zero cost via query_dataset.

FAQ

Common questions.

Do I need a Cloud subscription to use MCP?

No. Free plan includes the MCP server. Reads are unlimited; writes are capped at 300 credits/month on Free.

Will Stekpad add more MCP tools later?

Yes. The eight tools in v1 cover every verb plus dataset reads. v1.5 will add tools for pipelines and webhooks.

Can I use Stekpad MCP from a custom agent framework?

Yes. The MCP server is standards-compliant. Anything that speaks MCP works.

Install MCP. Reads are free.

300 credits a month, free forever. 8 tools, one API key.

First-class MCP server — every Stekpad verb is a Claude tool — Stekpad