_ registry / mcp + a2a streamable-http · checked 42m ago

com.scriptivox.www/transcription

https://www.scriptivox.com

Registry code: c96a7f4e0fae0f46

api record

Scriptivox turns recorded audio and video into text. Use these tools for meeting and interview recordings, podcasts, lecture capture, call archives, and video that needs captions. Not for live streaming or real-time dictation: every job takes a complete file, 1 second to 10 hours long and up to 5 GB. get_pricing, get_supported_languages, get_product_info and get_api_docs work without an API key; everything else needs one, sent as an Authorization or X-Api-Key header on the HTTP request. Prefer passing an explicit `language` when you know it.

endpoint
https://www.scriptivox.com/mcp
door code
43f79bb51d139ae0
protocol
streamable-http ·2025-06-18
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
live
uptime, 30 days
100%

90 days 100%· all time 100%

latency
280ms

last good check

priced tools
0

of 39 tools

_ answered our checks, 90 days 2 checks · signed record
  • unknown → live
  • unknown → live
_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ what it can do 39 tools
1 open2 auth-required 36 never probed 3 of 39 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • get_api_docs open 42m ago

    Get Scriptivox API documentation. Sections: quickstart, transcribe, result, list, cancel, delete, upload, balance, webhooks, errors. No API key required.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "section": {
          "enum": [
            "quickstart",
            "transcribe",
            "result",
            "list",
            "cancel",
            "delete",
            "upload",
            "balance",
            "webhooks",
            "errors",
            "all"
          ],
          "type": "string",
          "description": "Documentation section. Defaults to \"quickstart\"."
        }
      },
      "additionalProperties": false
    }
    arguments 23 lines
  • check_balance auth-required 42m ago

    Check your Scriptivox API credit balance, available hours, and pricing. Requires a configured API key.

    mcp-tool

    {
      "type": "object",
      "required": [],
      "properties": {},
      "additionalProperties": false
    }
    arguments 6 lines
  • get_account auth-required 42m ago

    Read the account of the signed-in person: current plan, entitlements and quota. Requires an OAuth 2.1 user access token, not an API key.

    mcp-tool

    {
      "type": "object",
      "required": [],
      "properties": {},
      "additionalProperties": false
    }
    arguments 6 lines
  • revoke_api_key unknown never probed

    Permanently revoke an API key belonging to the signed-in person. Cannot be undone. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [
        "key_id"
      ],
      "properties": {
        "key_id": {
          "type": "string",
          "description": "The key id to revoke, not the secret."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • list_automations unknown never probed

    List the automations on the signed-in person's account — saved chains of steps they built in the web app to run over a finished transcript. Read-only, and there is deliberately no tool here that creates or edits one. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [],
      "properties": {},
      "additionalProperties": false
    }
    arguments 6 lines
  • get_doc unknown never probed

    Fetch a full Scriptivox documentation page as markdown, by its slug (for example "quickstart", "authentication", "api-reference"). Call search_docs first if you do not know the slug. No API key required.

    mcp-tool

    {
      "type": "object",
      "required": [
        "slug"
      ],
      "properties": {
        "slug": {
          "type": "string",
          "description": "The page slug, e.g. \"quickstart\". Use \"\" or \"overview\" for the documentation index."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • purchase_plan unknown never probed

    Start checkout for a Scriptivox web subscription and return a Stripe Checkout URL. Does NOT charge anything: the person must open the link and enter their card. A web plan covers transcription done by a person in the browser and grants no API credit. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [
        "plan"
      ],
      "properties": {
        "plan": {
          "enum": [
            "monthly",
            "yearly",
            "team"
          ],
          "type": "string",
          "description": "Which plan to buy."
        }
      },
      "additionalProperties": false
    }
    arguments 18 lines
  • top_up_balance unknown never probed

    Start checkout to add credit to the prepaid API balance and return a Stripe Checkout URL. Does NOT charge anything: the person must open the link. Transcription is billed at $0.20 per hour of audio. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [
        "amount_cents"
      ],
      "properties": {
        "amount_cents": {
          "type": "integer",
          "description": "Amount to add, in US cents. A project minimum applies."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • get_billing_history unknown never probed

    Read the signed-in person's billing history: plan invoices, add-on charges, lifetime purchases and API deposits, newest first, with links to each Stripe invoice. Read-only — it charges nothing and changes nothing. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "integer",
          "description": "Rows per page, 1-100. Default 24."
        },
        "before": {
          "type": "string",
          "description": "ISO 8601 timestamp to page backwards from — pass the `next_cursor` from a previous call."
        }
      },
      "additionalProperties": false
    }
    arguments 14 lines
  • get_billing_portal_url unknown never probed

    Return a link to the Stripe billing portal for the signed-in person, where they can change their card, download invoices, or cancel a subscription. Does NOT charge anything and does NOT change anything: it returns a link the person must open themselves. Single-use and short-lived. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [],
      "properties": {},
      "additionalProperties": false
    }
    arguments 6 lines
  • search_transcripts unknown never probed

    Find transcripts in the signed-in person's library, filtered by folder, tag, workspace, status or filename, newest first. This is where the transcription ids that tag_transcriptions, move_to_folder, get_transcript_audio, chat_with_transcript and run_automation need come from — start here. NOT the same as list_transcriptions, which takes an API key and lists metered API jobs instead. Read-only. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "tag": {
          "type": "string",
          "description": "Only transcripts carrying this exact tag."
        },
        "limit": {
          "type": "integer",
          "description": "Rows to return, 1-200. Default 50."
        },
        "query": {
          "type": "string",
          "description": "Match against the original filename."
        },
        "offset": {
          "type": "integer",
          "description": "Rows to skip — pass next_offset from a previous call."
        },
        "status": {
          "enum": [
            "uploading",
            "pending",
            "processing",
            "completed",
            "failed"
          ],
          "type": "string",
          "description": "Filter by status. Most tools here need \"completed\"."
        },
        "folder_id": {
          "type": [
            "string",
            "null"
          ],
          "description": "Only transcripts in this folder, or null for those in no folder."
        },
        "workspace_id": {
          "type": "string",
          "description": "Restrict to one workspace."
        }
      },
      "additionalProperties": false
    }
    arguments 44 lines
  • get_supported_languages unknown never probed

    List all languages supported by Scriptivox for audio/video transcription. Returns language names and ISO codes. No API key required.

    mcp-tool

    {
      "type": "object",
      "required": [],
      "properties": {},
      "additionalProperties": false
    }
    arguments 6 lines
  • get_pricing unknown never probed

    Get Scriptivox pricing information including subscription plans (Free, Pro, Team) and API pay-as-you-go rates. Includes signup URLs. No API key required.

    mcp-tool

    {
      "type": "object",
      "required": [],
      "properties": {},
      "additionalProperties": false
    }
    arguments 6 lines
  • get_product_info unknown never probed

    Get information about Scriptivox capabilities: transcription, audio tools, video tools, subtitle tools, meeting bot, or API. No API key required.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "topic": {
          "enum": [
            "transcription",
            "audio-tools",
            "video-tools",
            "subtitle-tools",
            "meeting-bot",
            "api",
            "all"
          ],
          "type": "string",
          "description": "Topic to get info about. Defaults to \"all\"."
        }
      },
      "additionalProperties": false
    }
    arguments 19 lines
  • transcribe_url unknown never probed

    Transcribe audio or video from a public URL using Scriptivox AI. Supports 119 languages, speaker diarization, and word-level timestamps. RECOMMENDED: always pass the `language` parameter explicitly when you know the audio language — auto-detect has a small failure rate on short clips, code-switched audio, or files starting with music. Requires a configured API key.

    mcp-tool

    {
      "type": "object",
      "required": [
        "url"
      ],
      "properties": {
        "url": {
          "type": "string",
          "description": "Public URL to an audio or video file (http/https). Supports Google Drive, Dropbox, OneDrive sharing links, and direct file URLs."
        },
        "align": {
          "type": "boolean",
          "description": "Word-level timestamps + confidence scores. Default: true. Pass false to opt out (ignored when diarize: true)."
        },
        "diarize": {
          "type": "boolean",
          "description": "Enable speaker diarization. Default: false. When true, word-level alignment is automatically enabled regardless of `align`."
        },
        "language": {
          "type": "string",
          "description": "ISO 639-1 language code (e.g. \"en\", \"es\", \"fr\"). 119 languages supported. Strongly recommended when you know the language."
        },
        "webhook_url": {
          "type": "string",
          "description": "Optional HTTPS URL where transcription.* events will be POSTed (HMAC-signed)."
        },
        "speaker_count": {
          "type": "number",
          "description": "Expected number of speakers (1-50). Requires diarize: true. Passing this when known improves diarization accuracy."
        },
        "await_completed": {
          "type": "boolean",
          "description": "Default: true. When false, return the transcription_id immediately without polling."
        },
        "idempotency_key": {
          "type": "string",
          "description": "Optional Idempotency-Key header (up to 255 chars). Same key + same body = same transcription_id."
        }
      },
      "additionalProperties": false
    }
    arguments 41 lines
  • transcribe_status unknown never probed

    Check the status of a Scriptivox transcription job. Use this for long-running transcriptions, after a timeout, or to verify completion. Requires a configured API key.

    mcp-tool

    {
      "type": "object",
      "required": [
        "transcription_id"
      ],
      "properties": {
        "transcription_id": {
          "type": "string",
          "description": "The transcription ID returned from transcribe_url or transcribe_upload."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • transcribe_upload unknown never probed

    Transcribe a LOCAL file by uploading it to Scriptivox. NOT AVAILABLE over the hosted MCP endpoint: this server has no access to your filesystem. Use transcribe_url with a public URL, run @scriptivox/mcp-server locally over stdio, or drive the 3-step REST upload flow yourself. Max file size 5 GB. Requires a configured API key.

    mcp-tool

    {
      "type": "object",
      "required": [
        "file_path"
      ],
      "properties": {
        "align": {
          "type": "boolean",
          "description": "Word-level timestamps + confidence scores. Default: true. Pass false to opt out (ignored when diarize: true)."
        },
        "diarize": {
          "type": "boolean",
          "description": "Enable speaker diarization. Default: false. When true, word-level alignment is automatically enabled regardless of `align`."
        },
        "language": {
          "type": "string",
          "description": "ISO 639-1 language code (e.g. \"en\", \"es\", \"fr\"). 119 languages supported. Strongly recommended when you know the language."
        },
        "file_path": {
          "type": "string",
          "description": "Absolute path to the audio/video file on the local filesystem."
        },
        "webhook_url": {
          "type": "string",
          "description": "Optional HTTPS URL where transcription.* events will be POSTed (HMAC-signed)."
        },
        "speaker_count": {
          "type": "number",
          "description": "Expected number of speakers (1-50). Requires diarize: true. Passing this when known improves diarization accuracy."
        },
        "await_completed": {
          "type": "boolean",
          "description": "Default: true. When false, return the transcription_id immediately without polling."
        },
        "idempotency_key": {
          "type": "string",
          "description": "Optional Idempotency-Key header (up to 255 chars). Same key + same body = same transcription_id."
        }
      },
      "additionalProperties": false
    }
    arguments 41 lines
  • transcribe_cancel unknown never probed

    Cancel an in-flight Scriptivox transcription and release any reserved balance. Idempotent. Returns 409 CONFLICT on already-terminal jobs. Requires a configured API key.

    mcp-tool

    {
      "type": "object",
      "required": [
        "transcription_id"
      ],
      "properties": {
        "transcription_id": {
          "type": "string",
          "description": "The transcription ID to cancel (UUID)."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • transcribe_delete unknown never probed

    Soft-delete a Scriptivox transcription record. Idempotent. Returns 409 CONFLICT if the job is still in-flight — cancel first via transcribe_cancel. Requires a configured API key.

    mcp-tool

    {
      "type": "object",
      "required": [
        "transcription_id"
      ],
      "properties": {
        "transcription_id": {
          "type": "string",
          "description": "The transcription ID to delete (UUID)."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • list_transcriptions unknown never probed

    List recent transcriptions for the configured API key, with optional status/date filters and cursor pagination. The full transcript body is omitted — fetch transcribe_status per id to read it. Requires a configured API key.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "to": {
          "type": "string",
          "description": "ISO 8601 timestamp upper bound (exclusive)."
        },
        "from": {
          "type": "string",
          "description": "ISO 8601 timestamp lower bound (inclusive)."
        },
        "limit": {
          "type": "number",
          "description": "Max items per page (1-200, default 50)."
        },
        "order": {
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "description": "Sort order. Default: desc."
        },
        "cursor": {
          "type": "string",
          "description": "Opaque cursor from a previous response."
        },
        "status": {
          "enum": [
            "created",
            "downloading",
            "pending",
            "processing",
            "completed",
            "failed"
          ],
          "type": "string",
          "description": "Filter by status."
        }
      },
      "additionalProperties": false
    }
    arguments 42 lines
  • export_transcript unknown never probed

    Export a completed Scriptivox transcript as SRT subtitles, WebVTT subtitles, or plain text. Supports segmentation knobs (max_words, max_chars, max_duration, sentence_aware, include_speakers, strip_chars). Requires the transcription to be in `completed` status. Requires a configured API key.

    mcp-tool

    {
      "type": "object",
      "required": [
        "transcription_id",
        "format"
      ],
      "properties": {
        "format": {
          "enum": [
            "srt",
            "vtt",
            "text"
          ],
          "type": "string",
          "description": "Output format."
        },
        "max_chars": {
          "type": "number",
          "description": "Max characters per caption segment (default 80)."
        },
        "max_words": {
          "type": "number",
          "description": "Max words per caption segment (default 4)."
        },
        "strip_chars": {
          "type": "string",
          "description": "Characters to strip from the transcript before formatting."
        },
        "max_duration": {
          "type": "number",
          "description": "Max seconds per caption segment (default 10)."
        },
        "sentence_aware": {
          "type": "boolean",
          "description": "Break at sentence boundaries (default true)."
        },
        "include_speakers": {
          "enum": [
            "auto",
            "true",
            "false"
          ],
          "type": "string",
          "description": "Whether to prefix caption lines with speaker tags. 'auto' (default), 'true' (always), 'false' (never)."
        },
        "transcription_id": {
          "type": "string",
          "description": "Completed transcription ID (UUID)."
        }
      },
      "additionalProperties": false
    }
    arguments 52 lines
  • create_account unknown never probed

    Create a Scriptivox account from an email address and password. Needs no credential. The account is NOT usable when this returns: a confirmation email is sent and the account can do nothing until its link is followed, which only the person can do. The reply is identical whether or not the address was already registered.

    mcp-tool

    {
      "type": "object",
      "required": [
        "email",
        "password"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "Full name of the person. Optional."
        },
        "email": {
          "type": "string",
          "description": "Where the confirmation link is sent. Disposable-inbox providers are refused."
        },
        "password": {
          "type": "string",
          "description": "At least 6 characters, at most 72."
        },
        "agent_attribution": {
          "type": "string",
          "description": "Optional label identifying you, e.g. \"acme-assistant/1.4\". Used for support and abuse triage only."
        }
      },
      "additionalProperties": false
    }
    arguments 26 lines
  • create_api_key unknown never probed

    Mint a new Scriptivox API key (sk_live_...) for the signed-in person. This is the bridge from a web account to the transcription API. The secret is returned ONCE and cannot be retrieved again. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "A label so the person can tell their keys apart. Required."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • list_tags unknown never probed

    List the tags on the signed-in person's account: the ones actually in use on transcriptions with a count of each, and separately the named-tag registry the web app maintains. The two are not kept in step by the product, so both are returned. Tags are free-form labels; a transcription carries at most 5. Read-only. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [],
      "properties": {},
      "additionalProperties": false
    }
    arguments 6 lines
  • tag_transcriptions unknown never probed

    Add tags to up to 10 existing transcriptions at once — the tool for "label these interviews as Q3". Tags are created on first use, so they need not exist beforehand. Letters, digits and spaces only, at most 30 characters each; a transcription holds at most 5 tags and further ones are skipped rather than replacing existing tags. Passing more than 10 ids is refused, not truncated. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [
        "transcription_ids",
        "tags"
      ],
      "properties": {
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Tag names to add. Letters, digits and spaces, max 30 characters each."
        },
        "transcription_ids": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Transcription ids to tag. At most 10 per call."
        }
      },
      "additionalProperties": false
    }
    arguments 24 lines
  • list_folders unknown never probed

    List the folders on the signed-in person's account, with the workspace each belongs to. Use this to find the folder_id move_to_folder needs. Read-only, and there is deliberately no tool here that creates a folder. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [],
      "properties": {},
      "additionalProperties": false
    }
    arguments 6 lines
  • move_to_folder unknown never probed

    File up to 50 existing transcriptions into a folder, or pass folder_id: null to move them out of any folder. The folder must already exist and belong to the signed-in person — call list_folders for the ids. Passing more than 50 ids is refused, not truncated. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [
        "transcription_ids",
        "folder_id"
      ],
      "properties": {
        "folder_id": {
          "type": [
            "string",
            "null"
          ],
          "description": "Target folder id, or null to remove them from any folder."
        },
        "transcription_ids": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Transcription ids to move. At most 50 per call."
        }
      },
      "additionalProperties": false
    }
    arguments 24 lines
  • list_workspaces unknown never probed

    List the signed-in person's workspaces. Tags, folders and transcriptions all live inside one, so this is the outermost level of their library. Read-only. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [],
      "properties": {},
      "additionalProperties": false
    }
    arguments 6 lines
  • get_transcript_audio unknown never probed

    Return a time-limited signed URL for the source audio or video of an existing transcription, so it can be handed to another tool or streamed. Valid for one hour and supports HTTP Range requests. This reads back media that already exists — it does not transcribe anything and costs nothing. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [
        "transcription_id"
      ],
      "properties": {
        "transcription_id": {
          "type": "string",
          "description": "The transcription ID (UUID)."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • chat_with_transcript unknown never probed

    Ask a question about an existing transcript and get an answer from the model, with the transcript as context. SPENDS THE ACCOUNT'S LLM CREDITS — every message is billed against them. If you already hold the transcript text, answering directly is cheaper and usually just as good; this is for when you do not. Pass back the returned conversation_id to continue a thread. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [
        "transcription_id",
        "message"
      ],
      "properties": {
        "message": {
          "type": "string",
          "description": "The question to ask about the transcript."
        },
        "conversation_id": {
          "type": "string",
          "description": "Continue an existing thread. Omit to start a new one."
        },
        "transcription_id": {
          "type": "string",
          "description": "A completed transcription id."
        }
      },
      "additionalProperties": false
    }
    arguments 22 lines
  • run_automation unknown never probed

    Run one of the signed-in person's existing automations over one completed transcription. SPENDS THE ACCOUNT'S LLM CREDITS as its steps execute. Returns a run_id immediately — automations are long-running and do not finish inside this call, so poll get_automation_run until the status is succeeded or failed. Re-running the same automation over the same transcript is suppressed rather than duplicated. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [
        "automation_id",
        "transcription_id"
      ],
      "properties": {
        "automation_id": {
          "type": "string",
          "description": "From list_automations."
        },
        "transcription_id": {
          "type": "string",
          "description": "A COMPLETED transcription. Anything else is refused."
        }
      },
      "additionalProperties": false
    }
    arguments 18 lines
  • get_automation_run unknown never probed

    Check the progress of an automation run started by run_automation: overall status, plus each step with its status, model, duration and error. Poll this the way you would poll transcribe_status. Read-only. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [
        "run_id"
      ],
      "properties": {
        "run_id": {
          "type": "string",
          "description": "The run_id returned by run_automation."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • start_meeting_bot unknown never probed

    Send a bot to join ONE Zoom, Google Meet, Teams or Webex call and record it, producing a speaker-attributed transcript after the call ends. This is the only tool here that creates new transcription work, so it takes a single meeting_url — never a list — and is rate limited to 5 bots per hour per account. It consumes the account's meeting minutes. The transcript is not available when this returns; track it with list_scheduled_meetings. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [
        "meeting_url"
      ],
      "properties": {
        "title": {
          "type": "string",
          "description": "Title for the resulting transcript. Optional."
        },
        "language": {
          "type": "string",
          "description": "ISO 639-1 language code for the meeting audio. Optional; auto-detected when omitted."
        },
        "meeting_url": {
          "type": "string",
          "description": "The meeting link to join (Zoom, Google Meet, Teams or Webex). ONE url — this tool does not take a list."
        },
        "scheduled_time": {
          "type": "string",
          "description": "ISO 8601 time for the bot to join. Omit to join immediately. Must be in the future."
        }
      },
      "additionalProperties": false
    }
    arguments 25 lines
  • stop_meeting_bot unknown never probed

    Tell a meeting bot that is currently in a call to leave. Whatever it recorded up to that point is still processed into a transcript — this ends the recording, it does not discard it. Identify the bot by transcription_id or job_id from list_scheduled_meetings. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "job_id": {
          "type": "string",
          "description": "The meeting-bot job id. Either this or transcription_id."
        },
        "transcription_id": {
          "type": "string",
          "description": "The transcription the bot is recording into."
        }
      },
      "additionalProperties": false
    }
    arguments 14 lines
  • cancel_scheduled_bot unknown never probed

    Cancel a meeting bot that has not joined yet, so it never joins. Use transcription_id for a scheduled bot that already exists, or dispatch_id for one still queued because every bot was busy — a queued dispatch has no transcription and is reachable only by its dispatch_id. list_scheduled_meetings returns both, labelled. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "dispatch_id": {
          "type": "string",
          "description": "A dispatch still queued, with no transcription yet."
        },
        "transcription_id": {
          "type": "string",
          "description": "A scheduled bot that already exists."
        }
      },
      "additionalProperties": false
    }
    arguments 14 lines
  • list_scheduled_meetings unknown never probed

    List the signed-in person's meeting bots that are scheduled or currently running, plus any dispatches still queued waiting for a free bot. This is where the transcription_id, job_id and dispatch_id that stop_meeting_bot and cancel_scheduled_bot need come from. Read-only. Requires an OAuth 2.1 user access token.

    mcp-tool

    {
      "type": "object",
      "required": [],
      "properties": {},
      "additionalProperties": false
    }
    arguments 6 lines
  • transcription_url unknown never probed

    [DEPRECATED — use transcribe_url instead] Alias kept for backward compatibility with @scriptivox/[email protected]. Will be removed in 2.0.0. Identical behavior to transcribe_url.

    mcp-tool

    {
      "type": "object",
      "required": [
        "url"
      ],
      "properties": {
        "url": {
          "type": "string",
          "description": "Public URL to an audio/video file (http/https)."
        },
        "align": {
          "type": "boolean",
          "description": "Word-level timestamps + confidence scores. Default: true. Pass false to opt out (ignored when diarize: true)."
        },
        "diarize": {
          "type": "boolean",
          "description": "Enable speaker diarization. Default: false. When true, word-level alignment is automatically enabled regardless of `align`."
        },
        "language": {
          "type": "string",
          "description": "ISO 639-1 language code (e.g. \"en\", \"es\", \"fr\"). 119 languages supported. Strongly recommended when you know the language."
        },
        "webhook_url": {
          "type": "string",
          "description": "Optional HTTPS URL where transcription.* events will be POSTed (HMAC-signed)."
        },
        "speaker_count": {
          "type": "number",
          "description": "Expected number of speakers (1-50). Requires diarize: true. Passing this when known improves diarization accuracy."
        },
        "await_completed": {
          "type": "boolean",
          "description": "Default: true. When false, return the transcription_id immediately without polling."
        },
        "idempotency_key": {
          "type": "string",
          "description": "Optional Idempotency-Key header (up to 255 chars). Same key + same body = same transcription_id."
        }
      },
      "additionalProperties": false
    }
    arguments 41 lines
  • transcription_status unknown never probed

    [DEPRECATED — use transcribe_status instead] Alias kept for backward compatibility with @scriptivox/[email protected]. Will be removed in 2.0.0. Identical behavior to transcribe_status.

    mcp-tool

    {
      "type": "object",
      "required": [
        "transcription_id"
      ],
      "properties": {
        "transcription_id": {
          "type": "string",
          "description": "The transcription ID (UUID)."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • search_docs unknown never probed

    Search the Scriptivox documentation and agent guides. Returns matching documents with their URLs and summaries, best match first. Use this before guessing a URL. No API key required.

    mcp-tool

    {
      "type": "object",
      "required": [
        "query"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "maximum": 20,
          "minimum": 1,
          "description": "Maximum results to return. Defaults to 5, maximum 20."
        },
        "query": {
          "type": "string",
          "description": "What you want to know, in natural language."
        }
      },
      "additionalProperties": false
    }
    arguments 19 lines
_ try it over mcp through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ for your README measured, not declared

measured by brick.blue

[![measured by brick.blue](https://brick.blue/api/v1/agents/c96a7f4e0fae0f46/badge.svg)](https://brick.blue/agent/c96a7f4e0fae0f46)

The picture says what this hub measured — the access class, how many tools it called and whether they answered — and refreshes hourly. Own the domain? Prove it and the listing carries a verified badge here too: passport.

_ how we knowoff the mcp door
card completeness
100%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
—
median latency
—
work
attempts
0
accepted
0
rejected
0
acceptance rate
—
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
—
reviews
paid reviews
0
positive
0
negative
0
score
—

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.

_ also on scriptivox.com 1 entry

Served from the same domain, which is what was measured. Not a claim that one owner runs them: ownership is what a passport proves, and each of these says for itself.