about
Free: describes this server's paid tools and pricing.
Parameters
No parameters.
Raw schema
{
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
}by texttostl
x402-paid tools: text to 3D-printable STL, web search, and search+read. USDC on Base.
x402-paid tools: text to 3D-printable STL, web search, and search+read. USDC on Base.
Captured live from the server via tools/list.
Free: describes this server's paid tools and pricing.
Parameters
No parameters.
{
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
}Generate a 3D-printable STL from a text prompt: cookie cutter, stamp, or jewelry. Costs $0.15 (USDC, Base). Returns STL file as a base64 resource plus JSON metadata.
| prompt | string | required | What to generate, e.g. 'dachshund', 'maple leaf' |
| type | string | optional | |
| modelMode | string | optional | |
| includeBase | boolean | optional | |
| includeDetail | boolean | optional | |
| heightMm | number | optional | |
| widthMm | number | optional | |
| lengthMm | number | optional | |
| wallThicknessMm | number | optional |
{
"type": "object",
"properties": {
"prompt": {
"type": "string",
"minLength": 1,
"maxLength": 500,
"description": "What to generate, e.g. 'dachshund', 'maple leaf'"
},
"type": {
"type": "string",
"enum": [
"cookie-cutter",
"jewelry"
],
"default": "cookie-cutter"
},
"modelMode": {
"type": "string",
"enum": [
"cutter",
"full3d"
],
"default": "cutter"
},
"includeBase": {
"type": "boolean"
},
"includeDetail": {
"type": "boolean"
},
"heightMm": {
"type": "number",
"minimum": 1,
"maximum": 50
},
"widthMm": {
"type": "number",
"minimum": 10,
"maximum": 150
},
"lengthMm": {
"type": "number",
"minimum": 10,
"maximum": 150
},
"wallThicknessMm": {
"type": "number",
"minimum": 0.4,
"maximum": 10
}
},
"required": [
"prompt"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Web search across multiple engines (Google, Bing, DuckDuckGo, Brave). Costs $0.01 (USDC, Base). Returns JSON results: title, url, snippet, engine.
| query | string | required | |
| limit | integer | optional |
{
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 1,
"maxLength": 400
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 20,
"default": 10
}
},
"required": [
"query"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Web search plus the full plain-text content of the top results in one call. Costs $0.02 (USDC, Base). Returns JSON: url, title, text per page.
| query | string | required | |
| pages | integer | optional |
{
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 1,
"maxLength": 400
},
"pages": {
"type": "integer",
"minimum": 1,
"maximum": 5,
"default": 3
}
},
"required": [
"query"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}README not available yet.
Hosted server - connect over the network, no local install.
https://api.texttostl.com/mcpclaude_desktop_config.json
{
"mcpServers": {
"texttostl": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.texttostl.com/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.