MCP server
The same eighteen endpoints, as tools an agent can call directly. Same parameters, same responses, same credit costs.
Connect it
Add it to any MCP client — Claude Code, Claude Desktop, Cursor, or your own agent.
{
"mcpServers": {
"scrapefield": {
"type": "http",
"url": "https://scrapefield.com/mcp",
"headers": { "Authorization": "Bearer sf_live_…" }
}
}
}Try it without a key
Leave the Authorization header off and the server answers in demo mode: realistic sample data, the identical shapes, nothing charged and no account needed. It is there so you can evaluate the tools before deciding whether to sign up.
curl -X POST https://scrapefield.com/mcp \
-H "content-type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'The tools
One per endpoint, named for the job rather than for us.
| Tool | What it does | Credits |
|---|---|---|
search_places | Search Google Maps for businesses and places | 3 |
get_place | Get one Google Maps place in full | 3 |
get_place_reviews | Get the reviews for a place | 3 |
get_place_photos | Get the photos for a place | 2 |
get_linkedin_profile | Get a public LinkedIn profile | 10 |
get_linkedin_company | Get a public LinkedIn company page | 6 |
get_linkedin_posts | Get recent posts from a person or company | 6 |
search_linkedin_jobs | Search public job postings | 4 |
get_instagram_profile | Get a public Instagram profile | 3 |
get_instagram_posts | Get recent posts from a profile | 3 |
get_instagram_post | Get one post | 2 |
get_instagram_comments | Get the comments on a post | 3 |
get_instagram_hashtag | Get recent posts for a hashtag | 4 |
get_tiktok_profile | Get a public TikTok profile | 3 |
get_tiktok_videos | Get recent videos from a profile | 3 |
get_tiktok_video | Get one video | 2 |
get_tiktok_comments | Get the comments on a video | 3 |
search_tiktok | Search TikTok | 4 |