extractly-mcp
v1.0.1
Published
MCP server for Extractly — extract structured data from any URL
Maintainers
Readme
extractly-mcp
MCP server that exposes Extractly as a tool: send a URL and a JSON extraction schema, and get structured JSON back.
Install & run
npx extractly-mcpRequires Node.js 18+ (uses built-in fetch).
Get an API key at getextractly.com.
Tool: extract_structured_data
- url — page to extract from
- schema — JSON object describing fields to extract
- api_key — your Extractly API key
The server calls POST https://getextractly.com/api/v1/extract with url and schema in the body and x-api-key set to your key.
Claude Desktop
Edit your MCP config (e.g. claude_desktop_config.json) and add a server entry:
{
"mcpServers": {
"extractly": {
"command": "npx",
"args": ["-y", "extractly-mcp"]
}
}
}Restart Claude Desktop after saving.
Cursor
- Open Cursor Settings → MCP (or edit your MCP config file, depending on your Cursor version).
- Add a server that runs the same command as above, for example:
{
"mcpServers": {
"extractly": {
"command": "npx",
"args": ["-y", "extractly-mcp"]
}
}
}You will pass your api_key when the model calls the tool (or your client may support env-based config in the future).
License
MIT
