← Registry

Content Tools

scriptivox.com

Provides access to Scriptivox API for audio/video transcription, pricing, and account information.

5 endpoints158 known toolsFirst detected May 29, 2026Last detected September 6, 2026

ENDPOINT 1

https://platform.scriptivox.com/mcp

No auth detected

MCP server metadata

Name
com.scriptivox.www/transcription
Version
1.2.0
Capabilities
tools
Server instructions

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.

Known tools 39

get_supported_languages

List all languages supported by Scriptivox for audio/video transcription.

Inferred read-only
get_pricing

Get Scriptivox pricing information including subscription plans (Free, Pro, Team) and API pay-as-you-go rates.

Potential side effects
get_product_info

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

Inferred read-only
get_api_docs

Get Scriptivox API documentation.

Inferred read-only
check_balance

Check your Scriptivox API credit balance, available hours, and pricing.

Inferred read-only
transcribe_url

Transcribe audio or video from a public URL using Scriptivox AI.

Inferred read-only
transcribe_status

Check the status of a Scriptivox transcription job.

Inferred read-only
transcribe_upload

Transcribe a LOCAL file by uploading it to Scriptivox.

Inferred read-only
transcribe_cancel

Cancel an in-flight Scriptivox transcription and release any reserved balance.

Inferred read-only
transcribe_delete

Soft-delete a Scriptivox transcription record.

Potential side effects
list_transcriptions

List recent transcriptions for the configured API key, with optional status/date filters and cursor pagination.

Inferred read-only
export_transcript

Export a completed Scriptivox transcript as SRT subtitles, WebVTT subtitles, or plain text.

Inferred read-only
create_account

Create a Scriptivox account from an email address and password.

Potential side effects
get_account

Read the account of the signed-in person: current plan, entitlements and quota.

Inferred read-only
create_api_key

Mint a new Scriptivox API key (sk_live_...) for the signed-in person.

Inferred read-only
revoke_api_key

Permanently revoke an API key belonging to the signed-in person.

Inferred read-only
purchase_plan

Start checkout for a Scriptivox web subscription and return a Stripe Checkout URL.

Inferred read-only
top_up_balance

Start checkout to add credit to the prepaid API balance and return a Stripe Checkout URL.

Inferred read-only
get_billing_history

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.

Potential side effects
get_billing_portal_url

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.

Inferred read-only
search_transcripts

Find transcripts in the signed-in person's library, filtered by folder, tag, workspace, status or filename, newest first.

Inferred read-only
list_tags

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.

Inferred read-only
tag_transcriptions

Add tags to up to 10 existing transcriptions at once — the tool for "label these interviews as Q3".

Inferred read-only
list_folders

List the folders on the signed-in person's account, with the workspace each belongs to.

Inferred read-only
move_to_folder

File up to 50 existing transcriptions into a folder, or pass folder_id: null to move them out of any folder.

Inferred read-only
list_workspaces

List the signed-in person's workspaces.

Inferred read-only
get_transcript_audio

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.

Inferred read-only
chat_with_transcript

Ask a question about an existing transcript and get an answer from the model, with the transcript as context.

Inferred read-only
list_automations

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.

Inferred read-only
run_automation

Run one of the signed-in person's existing automations over one completed transcription.

Inferred read-only
get_automation_run

Check the progress of an automation run started by run_automation: overall status, plus each step with its status, model, duration and error.

Inferred read-only
start_meeting_bot

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.

Potential side effects
stop_meeting_bot

Tell a meeting bot that is currently in a call to leave.

Inferred read-only
cancel_scheduled_bot

Cancel a meeting bot that has not joined yet, so it never joins.

Inferred read-only
list_scheduled_meetings

List the signed-in person's meeting bots that are scheduled or currently running, plus any dispatches still queued waiting for a free bot.

Inferred read-only
transcription_url

[DEPRECATED — use transcribe_url instead] Alias kept for backward compatibility with @scriptivox/mcp-server@1.0.x.

Inferred read-only
transcription_status

[DEPRECATED — use transcribe_status instead] Alias kept for backward compatibility with @scriptivox/mcp-server@1.0.x.

Inferred read-only
search_docs

Search the Scriptivox documentation and agent guides.

Inferred read-only
get_doc

Fetch a full Scriptivox documentation page as markdown, by its slug (for example "quickstart", "authentication", "api-reference").

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.com-scriptivox-www-transcription]
url = "https://platform.scriptivox.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "com-scriptivox-www-transcription": {
      "type": "http",
      "url": "https://platform.scriptivox.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: com-scriptivox-www-transcription
Remote MCP URL: https://platform.scriptivox.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "com-scriptivox-www-transcription": {
      "url": "https://platform.scriptivox.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "com-scriptivox-www-transcription": {
      "type": "http",
      "url": "https://platform.scriptivox.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "com-scriptivox-www-transcription",
  "transport": "streamable-http",
  "url": "https://platform.scriptivox.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://platform.scriptivox.com/.well-known/mcp

No auth detected

MCP server metadata

Name
com.scriptivox.www/transcription
Version
1.2.0
Capabilities
tools
Server instructions

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.

Known tools 39

get_supported_languages

List all languages supported by Scriptivox for audio/video transcription.

Inferred read-only
get_pricing

Get Scriptivox pricing information including subscription plans (Free, Pro, Team) and API pay-as-you-go rates.

Potential side effects
get_product_info

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

Inferred read-only
get_api_docs

Get Scriptivox API documentation.

Inferred read-only
check_balance

Check your Scriptivox API credit balance, available hours, and pricing.

Inferred read-only
transcribe_url

Transcribe audio or video from a public URL using Scriptivox AI.

Inferred read-only
transcribe_status

Check the status of a Scriptivox transcription job.

Inferred read-only
transcribe_upload

Transcribe a LOCAL file by uploading it to Scriptivox.

Inferred read-only
transcribe_cancel

Cancel an in-flight Scriptivox transcription and release any reserved balance.

Inferred read-only
transcribe_delete

Soft-delete a Scriptivox transcription record.

Potential side effects
list_transcriptions

List recent transcriptions for the configured API key, with optional status/date filters and cursor pagination.

Inferred read-only
export_transcript

Export a completed Scriptivox transcript as SRT subtitles, WebVTT subtitles, or plain text.

Inferred read-only
create_account

Create a Scriptivox account from an email address and password.

Potential side effects
get_account

Read the account of the signed-in person: current plan, entitlements and quota.

Inferred read-only
create_api_key

Mint a new Scriptivox API key (sk_live_...) for the signed-in person.

Inferred read-only
revoke_api_key

Permanently revoke an API key belonging to the signed-in person.

Inferred read-only
purchase_plan

Start checkout for a Scriptivox web subscription and return a Stripe Checkout URL.

Inferred read-only
top_up_balance

Start checkout to add credit to the prepaid API balance and return a Stripe Checkout URL.

Inferred read-only
get_billing_history

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.

Potential side effects
get_billing_portal_url

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.

Inferred read-only
search_transcripts

Find transcripts in the signed-in person's library, filtered by folder, tag, workspace, status or filename, newest first.

Inferred read-only
list_tags

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.

Inferred read-only
tag_transcriptions

Add tags to up to 10 existing transcriptions at once — the tool for "label these interviews as Q3".

Inferred read-only
list_folders

List the folders on the signed-in person's account, with the workspace each belongs to.

Inferred read-only
move_to_folder

File up to 50 existing transcriptions into a folder, or pass folder_id: null to move them out of any folder.

Inferred read-only
list_workspaces

List the signed-in person's workspaces.

Inferred read-only
get_transcript_audio

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.

Inferred read-only
chat_with_transcript

Ask a question about an existing transcript and get an answer from the model, with the transcript as context.

Inferred read-only
list_automations

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.

Inferred read-only
run_automation

Run one of the signed-in person's existing automations over one completed transcription.

Inferred read-only
get_automation_run

Check the progress of an automation run started by run_automation: overall status, plus each step with its status, model, duration and error.

Inferred read-only
start_meeting_bot

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.

Potential side effects
stop_meeting_bot

Tell a meeting bot that is currently in a call to leave.

Inferred read-only
cancel_scheduled_bot

Cancel a meeting bot that has not joined yet, so it never joins.

Inferred read-only
list_scheduled_meetings

List the signed-in person's meeting bots that are scheduled or currently running, plus any dispatches still queued waiting for a free bot.

Inferred read-only
transcription_url

[DEPRECATED — use transcribe_url instead] Alias kept for backward compatibility with @scriptivox/mcp-server@1.0.x.

Inferred read-only
transcription_status

[DEPRECATED — use transcribe_status instead] Alias kept for backward compatibility with @scriptivox/mcp-server@1.0.x.

Inferred read-only
search_docs

Search the Scriptivox documentation and agent guides.

Inferred read-only
get_doc

Fetch a full Scriptivox documentation page as markdown, by its slug (for example "quickstart", "authentication", "api-reference").

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.com-scriptivox-www-transcription]
url = "https://platform.scriptivox.com/.well-known/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "com-scriptivox-www-transcription": {
      "type": "http",
      "url": "https://platform.scriptivox.com/.well-known/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: com-scriptivox-www-transcription
Remote MCP URL: https://platform.scriptivox.com/.well-known/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "com-scriptivox-www-transcription": {
      "url": "https://platform.scriptivox.com/.well-known/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "com-scriptivox-www-transcription": {
      "type": "http",
      "url": "https://platform.scriptivox.com/.well-known/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "com-scriptivox-www-transcription",
  "transport": "streamable-http",
  "url": "https://platform.scriptivox.com/.well-known/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 3

https://www.scriptivox.com/mcp/docs

No auth detected

MCP server metadata

Name
com.scriptivox.www/transcription
Version
1.2.0
Capabilities
tools
Server instructions

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.

Known tools 2

search_docs

Search the Scriptivox documentation and agent guides.

Inferred read-only
get_doc

Fetch a full Scriptivox documentation page as markdown, by its slug (for example "quickstart", "authentication", "api-reference").

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.com-scriptivox-www-transcription]
url = "https://www.scriptivox.com/mcp/docs"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "com-scriptivox-www-transcription": {
      "type": "http",
      "url": "https://www.scriptivox.com/mcp/docs"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: com-scriptivox-www-transcription
Remote MCP URL: https://www.scriptivox.com/mcp/docs

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "com-scriptivox-www-transcription": {
      "url": "https://www.scriptivox.com/mcp/docs"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "com-scriptivox-www-transcription": {
      "type": "http",
      "url": "https://www.scriptivox.com/mcp/docs"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "com-scriptivox-www-transcription",
  "transport": "streamable-http",
  "url": "https://www.scriptivox.com/mcp/docs"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 4

https://www.scriptivox.com/.well-known/mcp

No auth detected

MCP server metadata

Name
com.scriptivox.www/transcription
Version
1.2.0
Capabilities
tools
Server instructions

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.

Known tools 39

get_supported_languages

List all languages supported by Scriptivox for audio/video transcription.

Inferred read-only
get_pricing

Get Scriptivox pricing information including subscription plans (Free, Pro, Team) and API pay-as-you-go rates.

Potential side effects
get_product_info

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

Inferred read-only
get_api_docs

Get Scriptivox API documentation.

Inferred read-only
check_balance

Check your Scriptivox API credit balance, available hours, and pricing.

Inferred read-only
transcribe_url

Transcribe audio or video from a public URL using Scriptivox AI.

Inferred read-only
transcribe_status

Check the status of a Scriptivox transcription job.

Inferred read-only
transcribe_upload

Transcribe a LOCAL file by uploading it to Scriptivox.

Inferred read-only
transcribe_cancel

Cancel an in-flight Scriptivox transcription and release any reserved balance.

Inferred read-only
transcribe_delete

Soft-delete a Scriptivox transcription record.

Potential side effects
list_transcriptions

List recent transcriptions for the configured API key, with optional status/date filters and cursor pagination.

Inferred read-only
export_transcript

Export a completed Scriptivox transcript as SRT subtitles, WebVTT subtitles, or plain text.

Inferred read-only
create_account

Create a Scriptivox account from an email address and password.

Potential side effects
get_account

Read the account of the signed-in person: current plan, entitlements and quota.

Inferred read-only
create_api_key

Mint a new Scriptivox API key (sk_live_...) for the signed-in person.

Inferred read-only
revoke_api_key

Permanently revoke an API key belonging to the signed-in person.

Inferred read-only
purchase_plan

Start checkout for a Scriptivox web subscription and return a Stripe Checkout URL.

Inferred read-only
top_up_balance

Start checkout to add credit to the prepaid API balance and return a Stripe Checkout URL.

Inferred read-only
get_billing_history

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.

Potential side effects
get_billing_portal_url

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.

Inferred read-only
search_transcripts

Find transcripts in the signed-in person's library, filtered by folder, tag, workspace, status or filename, newest first.

Inferred read-only
list_tags

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.

Inferred read-only
tag_transcriptions

Add tags to up to 10 existing transcriptions at once — the tool for "label these interviews as Q3".

Inferred read-only
list_folders

List the folders on the signed-in person's account, with the workspace each belongs to.

Inferred read-only
move_to_folder

File up to 50 existing transcriptions into a folder, or pass folder_id: null to move them out of any folder.

Inferred read-only
list_workspaces

List the signed-in person's workspaces.

Inferred read-only
get_transcript_audio

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.

Inferred read-only
chat_with_transcript

Ask a question about an existing transcript and get an answer from the model, with the transcript as context.

Inferred read-only
list_automations

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.

Inferred read-only
run_automation

Run one of the signed-in person's existing automations over one completed transcription.

Inferred read-only
get_automation_run

Check the progress of an automation run started by run_automation: overall status, plus each step with its status, model, duration and error.

Inferred read-only
start_meeting_bot

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.

Potential side effects
stop_meeting_bot

Tell a meeting bot that is currently in a call to leave.

Inferred read-only
cancel_scheduled_bot

Cancel a meeting bot that has not joined yet, so it never joins.

Inferred read-only
list_scheduled_meetings

List the signed-in person's meeting bots that are scheduled or currently running, plus any dispatches still queued waiting for a free bot.

Inferred read-only
transcription_url

[DEPRECATED — use transcribe_url instead] Alias kept for backward compatibility with @scriptivox/mcp-server@1.0.x.

Inferred read-only
transcription_status

[DEPRECATED — use transcribe_status instead] Alias kept for backward compatibility with @scriptivox/mcp-server@1.0.x.

Inferred read-only
search_docs

Search the Scriptivox documentation and agent guides.

Inferred read-only
get_doc

Fetch a full Scriptivox documentation page as markdown, by its slug (for example "quickstart", "authentication", "api-reference").

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.com-scriptivox-www-transcription]
url = "https://www.scriptivox.com/.well-known/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "com-scriptivox-www-transcription": {
      "type": "http",
      "url": "https://www.scriptivox.com/.well-known/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: com-scriptivox-www-transcription
Remote MCP URL: https://www.scriptivox.com/.well-known/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "com-scriptivox-www-transcription": {
      "url": "https://www.scriptivox.com/.well-known/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "com-scriptivox-www-transcription": {
      "type": "http",
      "url": "https://www.scriptivox.com/.well-known/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "com-scriptivox-www-transcription",
  "transport": "streamable-http",
  "url": "https://www.scriptivox.com/.well-known/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 5

https://www.scriptivox.com/mcp

No auth detected

MCP server metadata

Name
com.scriptivox.www/transcription
Version
1.2.0
Capabilities
tools
Server instructions

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.

Known tools 39

get_supported_languages

List all languages supported by Scriptivox for audio/video transcription.

Inferred read-only
get_pricing

Get Scriptivox pricing information including subscription plans (Free, Pro, Team) and API pay-as-you-go rates.

Potential side effects
get_product_info

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

Inferred read-only
get_api_docs

Get Scriptivox API documentation.

Inferred read-only
check_balance

Check your Scriptivox API credit balance, available hours, and pricing.

Inferred read-only
transcribe_url

Transcribe audio or video from a public URL using Scriptivox AI.

Inferred read-only
transcribe_status

Check the status of a Scriptivox transcription job.

Inferred read-only
transcribe_upload

Transcribe a LOCAL file by uploading it to Scriptivox.

Inferred read-only
transcribe_cancel

Cancel an in-flight Scriptivox transcription and release any reserved balance.

Inferred read-only
transcribe_delete

Soft-delete a Scriptivox transcription record.

Potential side effects
list_transcriptions

List recent transcriptions for the configured API key, with optional status/date filters and cursor pagination.

Inferred read-only
export_transcript

Export a completed Scriptivox transcript as SRT subtitles, WebVTT subtitles, or plain text.

Inferred read-only
create_account

Create a Scriptivox account from an email address and password.

Potential side effects
get_account

Read the account of the signed-in person: current plan, entitlements and quota.

Inferred read-only
create_api_key

Mint a new Scriptivox API key (sk_live_...) for the signed-in person.

Inferred read-only
revoke_api_key

Permanently revoke an API key belonging to the signed-in person.

Inferred read-only
purchase_plan

Start checkout for a Scriptivox web subscription and return a Stripe Checkout URL.

Inferred read-only
top_up_balance

Start checkout to add credit to the prepaid API balance and return a Stripe Checkout URL.

Inferred read-only
get_billing_history

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.

Potential side effects
get_billing_portal_url

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.

Inferred read-only
search_transcripts

Find transcripts in the signed-in person's library, filtered by folder, tag, workspace, status or filename, newest first.

Inferred read-only
list_tags

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.

Inferred read-only
tag_transcriptions

Add tags to up to 10 existing transcriptions at once — the tool for "label these interviews as Q3".

Inferred read-only
list_folders

List the folders on the signed-in person's account, with the workspace each belongs to.

Inferred read-only
move_to_folder

File up to 50 existing transcriptions into a folder, or pass folder_id: null to move them out of any folder.

Inferred read-only
list_workspaces

List the signed-in person's workspaces.

Inferred read-only
get_transcript_audio

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.

Inferred read-only
chat_with_transcript

Ask a question about an existing transcript and get an answer from the model, with the transcript as context.

Inferred read-only
list_automations

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.

Inferred read-only
run_automation

Run one of the signed-in person's existing automations over one completed transcription.

Inferred read-only
get_automation_run

Check the progress of an automation run started by run_automation: overall status, plus each step with its status, model, duration and error.

Inferred read-only
start_meeting_bot

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.

Potential side effects
stop_meeting_bot

Tell a meeting bot that is currently in a call to leave.

Inferred read-only
cancel_scheduled_bot

Cancel a meeting bot that has not joined yet, so it never joins.

Inferred read-only
list_scheduled_meetings

List the signed-in person's meeting bots that are scheduled or currently running, plus any dispatches still queued waiting for a free bot.

Inferred read-only
transcription_url

[DEPRECATED — use transcribe_url instead] Alias kept for backward compatibility with @scriptivox/mcp-server@1.0.x.

Inferred read-only
transcription_status

[DEPRECATED — use transcribe_status instead] Alias kept for backward compatibility with @scriptivox/mcp-server@1.0.x.

Inferred read-only
search_docs

Search the Scriptivox documentation and agent guides.

Inferred read-only
get_doc

Fetch a full Scriptivox documentation page as markdown, by its slug (for example "quickstart", "authentication", "api-reference").

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.com-scriptivox-www-transcription]
url = "https://www.scriptivox.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "com-scriptivox-www-transcription": {
      "type": "http",
      "url": "https://www.scriptivox.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: com-scriptivox-www-transcription
Remote MCP URL: https://www.scriptivox.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "com-scriptivox-www-transcription": {
      "url": "https://www.scriptivox.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "com-scriptivox-www-transcription": {
      "type": "http",
      "url": "https://www.scriptivox.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "com-scriptivox-www-transcription",
  "transport": "streamable-http",
  "url": "https://www.scriptivox.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for scriptivox.com was fetched 2026-08-27T07:06:48.156Z.

Trust status Trusted

scriptivox.com is assessed as Trusted: Domain runs a meaningful technology spend, consistent with a real business.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.