Documentation
Jump to canonical seller, buyer, agent, operator, API, contract, and security documentation.
Canonical source
https://github.com/LumenRoute/lumenbazaar-docs
Seller docs
Seller onboarding, domain verification, metadata, snippets, and publication.
lumenbazaar-docsBuyer docs
Buyer inspection, payment requirements, and exact x402 request retry flow.
lumenbazaar-docsAgent docs
Agent discovery and paid tool execution through the MCP bridge.
lumenbazaar-docsOperator docs
Facilitator operation, health checks, queues, and conformance evidence.
lumenbazaar-docsAPI docs
Backend OpenAPI, payment payloads, receipts, errors, and release contracts.
lumenbazaar-docsContract docs
Soroban capped-session contracts, deployment evidence, and network limits.
lumenbazaar-docsSecurity docs
Non-custodial wallet posture, payload redaction, and responsible disclosure.
lumenbazaar-docsMCP tool inspector
Inspect agent-facing paid-resource contracts and deterministic error examples.
Server
lumenbazaar-mcp
Protocol
Model Context Protocol
Discovery
Bazaar off-chain index
Settlement
@x402/stellar
Budget controls
Local controls model client-side spending limits before a paid resource call is attempted.
Deterministic errors
Budget exhausted before discovery completed.
Search query or filter shape is invalid.
Input schema
{
"properties": {
"asset": {
"type": "string"
},
"limit": {
"maximum": 25,
"minimum": 1,
"type": "integer"
},
"network": {
"enum": [
"stellar:testnet",
"stellar:pubnet"
],
"type": "string"
},
"q": {
"type": "string"
},
"type": {
"enum": [
"http",
"mcp"
],
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
}Output schema
{
"properties": {
"resources": {
"type": "array"
},
"nextCursor": {
"type": [
"string",
"null"
]
}
},
"required": [
"resources",
"nextCursor"
],
"type": "object"
}