Use DataFuel from AI agents and IDEs
Connect Claude Code, Cursor or any MCP client to the DataFuel MCP server, or hand an agent the skill file.
Written By Carmine Cella
Last updated About 3 hours ago
The same API is exposed as a Model Context Protocol server for agents and AI IDEs. It is streamable HTTP, stateless, and authenticates with the same X-API-Key header. Every tool call is billed exactly like its REST counterpart.
Endpoint: https://scraping-api.datafuel.ai/mcp
Claude Code
claude mcp add --transport http datafuel https://scraping-api.datafuel.ai/mcp \ --header "X-API-Key: df_key_your_key_here"Cursor, Claude Desktop and other clients
Add this to the client's MCP configuration (mcp.json or equivalent):
{ "mcpServers": { "datafuel": { "url": "https://scraping-api.datafuel.ai/mcp", "headers": { "X-API-Key": "df_key_your_key_here" } } }}Tools
scrape and map block until the result is ready, up to ten minutes. The job and crawl tools return immediately and are polled.
Give an agent the skill file
For agents that call the REST API directly, DataFuel publishes a skill file that explains endpoint choice, request shapes, the result envelope and error handling in a form written for models:
https://scraping-api.datafuel.ai/skill.mdhttps://scraping-api.datafuel.ai/llms.txt(same content)
Drop it into your agent's context or skills directory. The full machine-readable schema is at https://scraping-api.datafuel.ai/docs/openapi.yaml.
Keep the key out of prompts
Configure the key in the MCP client or in the agent's environment. Never paste it into a chat message; transcripts get logged and shared.