MCP for AI tools

Use Sinyx directly inside your AI coding workflow.

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.

Why MCP matters

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.

Claude Code

Research while coding.

Let Claude fetch clean reference material, docs, and articles through Sinyx.

Codex

Tool-ready context.

Use Sinyx extraction in coding agents and developer automation flows.

Cursor

Project-local setup.

Add Sinyx to editor workflows with a simple MCP server config.

Windsurf

Agent-friendly browsing.

Give Cascade access to structured web content through the same API key.

Recommended config

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 Code

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.

Available tools

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.

Links