- Home
- MCP servers
- Barevalue
Barevalue
- javascript
0
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"quietnotion-barevalue-mcp": {
"command": "npx",
"args": [
"-y",
"barevalue-mcp"
],
"env": {
"BAREVALUE_API_KEY": "bv_sk_your_api_key_here",
"BAREVALUE_API_URL": "https://barevalue.com/api/v1"
}
}
}
}You can run the Barevalue MCP server to submit, validate, and manage podcast editing orders from Claude Code or other MCP-compatible clients. This server lets you upload audio, submit editing tasks, check progress, and receive automated notifications via webhooks, all using the MCP protocol.
How to use
Set up an MCP client to connect to the Barevalue MCP server. You can run the server locally via a lightweight CLI wrapper or through a one-off npx invocation. Once configured, you can upload local audio files, pre-validate external URLs, submit editing tasks, monitor their status, and retrieve completed outputs such as edited audio, transcripts, and show notes.
How to install
Prerequisites you need: Node.js and npm installed on your machine. You will also need a Barevalue account with API access.
{
"mcpServers": {
"barevalue_npx": {
"command": "npx",
"args": ["-y", "barevalue-mcp"],
"env": {
"BAREVALUE_API_KEY": "bv_sk_your_api_key_here"
}
},
"barevalue_cli": {
"command": "barevalue-mcp",
"args": [],
"env": {
"BAREVALUE_API_KEY": "bv_sk_your_api_key_here"
}
}
}
}
Configuration and getting an API key
To submit orders, you must obtain an API key from your Barevalue account. Follow these steps to generate your key.
1) Log in to your Barevalue account
2) Go to Settings -> API Keys
3) Create API Key
4) Copy the key (starts with bv_sk_); it is shown only once
Environment variables
The following environment variables are used by the MCP server configuration.
BAREVALUE_API_KEY: Your Barevalue API key (required)
BAREVALUE_API_URL: Override API base URL (optional)
Available tools
barevalue_account
Get account information including credit balance, AI subscription status, and pricing.
barevalue_estimate
Calculate the cost of an order before submission.
barevalue_upload
Upload an audio file from your local machine; returns order_id and s3_key for submission.
barevalue_validate
Pre-check a file from a public URL before submission; validates speech content and detects music-only content.
barevalue_submit
Submit an uploaded file for AI editing; charges credits/subscription minutes.
barevalue_submit_url
Submit a public URL for editing without uploading.
barevalue_status
Check order status and retrieve download URLs when complete.
barevalue_list_orders
List recent orders with pagination.
barevalue_webhooks_list
List all configured webhooks.
barevalue_webhook_create
Create a webhook; save the secret for verification.
barevalue_webhook_update
Update webhook URL, events, or active status.
barevalue_webhook_delete
Delete a webhook permanently.
barevalue_webhook_rotate_secret
Rotate the signing secret for a webhook.