Suprsonic Mcp

by O-mega-Enterprise

738 downloads
Not rated
GitHub

About

Suprsonic is a unified agent API that bundles dozens of capabilities behind one API key.

Details

Author
O-mega-Enterprise
Downloads
738
Categories
Other, API, AI, Automation, Search, Web Scraping

- Web search with AI synthesis, SERP, or both
- URL scraping to Markdown
- Professional profile and email finding
- Image generation from text prompts
- Text-to-speech and audio transcription
- SMS and WhatsApp messaging
- File conversion across 200+ formats
- Invoice parsing and subtitle generation
- Unified response object with metadata and credit usage
- Structured error handling with retry information

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Suprsonic Mcp
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Run it instantly via npx -y @suprsonic/mcp with the SUPRSONIC_API_KEY environment variable set. For local use with Claude Desktop, add the command to claude_desktop_config.json; for Cursor/VS Code, add it to .cursor/mcp.json or the VS Code MCP config. A remote HTTP server is available with --http --port 3100, listening on http://localhost:3100/mcp.

search

Search the web. Returns AI-synthesized answers, raw SERP results, or both. Cost: serp 1 credit, ai 2 credits, deep 3 credits.

scrape

Extract content from any URL as Markdown. Auto-escalates from fast HTTP to JS rendering to stealth browser. Cost: fast 1 credit, standard 2 credits, thorough 5 credits.

profiles

Find and enrich a professional profile by LinkedIn URL or name + company. Cost: 3 credits.

emails

Find a professional email address by name and company domain. Cost: 2 credits.

images

Generate an image from a text prompt. Cost: 3 credits.

tts

Convert text to speech audio. Cost: 2 credits.

stt

Transcribe audio to text with timestamps. Cost: 2 credits.

sms

Send an SMS or WhatsApp message. Cost: 1 credit.

documents

Extract structured data from a URL or text content using LLM analysis. Cost: 3 credits.

companies

Look up company data by domain. Returns industry, size, description, logo, brand colors. Cost: 3 credits.

email-verify

Check if an email address is deliverable. Cost: 1 credit.

transcribe

Transcribe audio or video with speaker labels and timestamps. Cost: 3 credits.

invoice-parse

Extract structured line items, totals, and dates from an invoice or receipt. Cost: 3 credits.

subtitle

Generate SRT or VTT subtitles from audio or video. Cost: 2 credits.

file-convert

Convert a file between 200+ formats (PDF, DOCX, XLSX, images, etc.). Cost: 2 credits.

bg-remove

Remove the background from an image. Cost: 2 credits.

screenshot

Capture a rendered screenshot of a webpage. Cost: 1 credit.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "suprsonic mcp": {
            "suprsonic": {
                "command": "npx",
                "args": [
                    "-y",
                    "suprsonic-mcp"
                ],
                "env": {
                    "SUPRSONIC_API_KEY": "omk_your_key"
                }
            }
        }
    }
}

McpServers

{
    "suprsonic": {
        "command": "npx",
        "args": [
            "-y",
            "suprsonic-mcp"
        ],
        "env": {
            "SUPRSONIC_API_KEY": "omk_your_key"
        }
    }
}

- Search the web— Ask the assistant to search for current information usingsearch, with options for AI-synthesized results or raw SERP data.
- Extract webpage content— Request clean Markdown extraction from any URL viascrape.
- Find professional contacts— Look up profiles withprofilesand discover email addresses usingemails.
- Generate images and speech— Create images from text prompts withimagesand convert text to spoken audio viatts.
- Transcribe and subtitle media— Transcribe audio files usingsttortranscribe(with speaker labels), and generate SRT/VTT subtitles withsubtitle.
- Process documents and files— Extract structured data from URLs withdocuments, parse invoices viainvoice-parse, convert between 200+ formats usingfile-convert, and capture webpage screenshots withscreenshot.

MCP server forSuprsonic. Gives any AI agent dozens of capabilities through one connection.

SUPRSONIC_API_KEY=omk_your_key npx -y @suprsonic/mcp

Get your API key atsuprsonic.ai/app/apis.

Add to~/Library/Application Support/Claude/claude_desktop_config.json:

{ "mcpServers": { "suprsonic": { "command": "npx", "args": ["-y", "@suprsonic/mcp"], "env": { "SUPRSONIC_API_KEY": "omk_your_key" } } } }

Add to.cursor/mcp.jsonor VS Code MCP config:

{ "suprsonic": { "command": "npx", "args": ["-y", "@suprsonic/mcp"], "env": { "SUPRSONIC_API_KEY": "omk_your_key" } } }

Remote HTTP (for Claude API, ChatGPT, programmatic agents)

SUPRSONIC_API_KEY=omk_your_key npx -y @suprsonic/mcp --http --port 3100

Then connect tohttp://localhost:3100/mcp.

Every tool returns a unified response object:

{ "success": true, "data": { "results": [ { "title": "OpenAI raises $6.6B", "url": "https://...", "snippet": "..." } ] }, "error": null, "metadata": { "provider_used": "serperdev", "providers_tried": ["serperdev"], "response_time_ms": 1200, "request_id": "req_abc123" }, "credits_used": 1 }

On failure,successisfalseanderrorcontains the details (see below).

Error object structure (returned whensuccessisfalse):

{ "type": "billing_error", "title": "Insufficient credits", "status": 402, "detail": "Your account has 0 credits remaining. Add credits at suprsonic.ai/app/billing.", "is_retriable": false, "retry_after_seconds": null, "error_category": "billing" }

Error categories:transient(retry safe),permanent(bad request),authentication(invalid key),billing(out of credits).

When using MCP, the AI agent receives the error in the tool response and can decide whether to retry based onis_retriableandretry_after_seconds.

Full API reference with all parameters and example responses:suprsonic.ai/apis

Apigene MCP Gateway is the runtime layer that connects AI agents to APIs and MCP servers via Model Context Protocol.

One MCP server for AI agents to use any tools reliably at any scale

Intelligent rate limiting for agent-to-agent communication — per-agent quotas, sliding window throttling, burst allowances, and fair-use enforcement across multi-agent MCP deployments.

Unified MCP & skill management gateway with progressive disclosure. Manages multiple MCP servers as Agent Apps, loading tool schemas on demand for 99% context token savings. Shared across Claude Code, Codex, OpenCode and more.

65+ AI tools as an MCP server. Research, write, code, scrape, translate, analyze, agent memory, workflows. Pay per call from $0.006.

The Ultimate Control Plane for MCP Unlock the full power of Model Context Protocol with zero friction. One-Click GPT Integration: Bridge the gap between MCP servers and ChatGPT/LLMs instantly. No more manual config hunting. Pro-Level Orchestration: Manage, monitor, and toggle multiple MCP tools from a single, intuitive dashboard. Secure by Design: Built-in support for complex auth flows and 2FA, making enterprise-grade tool integration seamless. Streamlined Debugging: Test queries and inspect tool responses in real-time without leaving the hub. Stop wrestling with JSON configs. Start building agentic workflows that actually work.

Run MCP tools in production without managing your own server — built-in retries, permissions, and observability.

Magica is your all-in-one AI platform, offering 2500+ cutting-edge tools under a single subscription.

Dynamically search and call tools using UnifAI Network

Agent-native developer Q&A API with MCP + A2A endpoints for citations, job pickup, and answer submission.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.