create_text — $0
create_text — $0.07 USDC
70000 (raw units)
price
5
calls / 30d
2
unique payers
2026-09-02
updated
Provider
mcp.soundside.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x15179876c595922999C2d5DC7c23Cc7711fE799a",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "70000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "media",
"discoverable": true,
"info": {
"input": {
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"resource_id": "uuid",
"status": "complete",
"success": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"advanced_options": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"description": "Provider-specific settings dict",
"title": "Advanced Options"
},
"json_schema": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"description": "JSON schema for structured output",
"title": "Json Schema"
},
"max_tokens": {
"default": 512,
"description": "Maximum tokens to generate",
"title": "Max Tokens",
"type": "integer"
},
"messages": {
"default": [],
"description": "Chat messages with role and content",
"items": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"title": "Messages",
"type": "array"
},
"model": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Model name override",
"title": "Model"
},
"project_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Library project UUID",
"title": "Project Id"
},
"prompt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Single prompt (alternative to messages)",
"title": "Prompt"
},
"provider": {
"default": "vertex",
"description": "AI provider for text generation",
"enum": [
"minimax",
"vertex",
"grok",
"qwen"
],
"title": "Provider",
"type": "string"
},
"store_response": {
"default": false,
"description": "Store response as library resource",
"title": "Store Response",
"type": "boolean"
},
"temperature": {
"default": 0.7,
"description": "Sampling temperature (0-2)",
"title": "Temperature",
"type": "number"
}
},
"title": "create_textArguments",
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"video",
"image",
"audio",
"music",
"MCP",
"AI",
"generation"
]
}
}Use it
curl
curl "https://mcp.soundside.ai/mcp" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://mcp.soundside.ai/mcp");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://mcp.soundside.ai/mcp")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14145.json, and this resource appears in /discovery/resources and /discovery/search.