Research while coding.
Let Claude fetch clean reference material, docs, and articles through Sinyx.
MCP for AI tools
Install the published sinyx-mcp package with npx, connect your RapidAPI key, and extract clean web content from Claude Code, Codex, Cursor, Windsurf, or any MCP-compatible client.
MCP turns Sinyx from a standalone API into a tool your AI assistant can call. Extraction defaults to source-aware context, so agents receive Markdown, chunks, citation, freshness, and quality signals without every user wiring custom HTTP requests by hand.
Let Claude fetch clean reference material, docs, and articles through Sinyx.
Use Sinyx extraction in coding agents and developer automation flows.
Add Sinyx to editor workflows with a simple MCP server config.
Give Cascade access to structured web content through the same API key.
This configuration uses the published npm package. Replace your-rapidapi-key with a key from a RapidAPI app subscribed to Sinyx.
{
"mcpServers": {
"sinyx": {
"command": "npx",
"args": ["-y", "sinyx-mcp"],
"env": {
"SINYX_API_BASE_URL": "https://sinyx.p.rapidapi.com",
"SINYX_API_KEY": "your-rapidapi-key",
"SINYX_API_KEY_HEADER": "x-rapidapi-key",
"SINYX_RAPIDAPI_HOST": "sinyx.p.rapidapi.com"
}
}
}
}
claude mcp add --transport stdio \
--env SINYX_API_BASE_URL=https://sinyx.p.rapidapi.com \
--env SINYX_API_KEY=your-rapidapi-key \
--env SINYX_API_KEY_HEADER=x-rapidapi-key \
--env SINYX_RAPIDAPI_HOST=sinyx.p.rapidapi.com \
sinyx -- npx -y sinyx-mcp@latest
Then ask Claude Code: Use Sinyx to extract https://example.com as context.
| Tool | Use |
|---|---|
sinyx_extract |
Extract one public URL. Defaults to context; also supports full, markdown, text, html, and chunks. |
sinyx_batch_extract |
Extract one to five public URLs in a single request. Defaults to context. |
sinyx_status |
Check API status or RapidAPI metadata fallback. |