proofstream_get_pricing
Retrieve current ProofStream pricing and service details without submitting a request.
Instructions
Get current ProofStream pricing and service details without making a request.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:124-128 (registration)Tool registration in the TOOLS array defining proofstream_get_pricing with name, description, and empty inputSchema.
name: 'proofstream_get_pricing', description: 'Get current ProofStream pricing and service details without making a request.', inputSchema: { type: 'object', properties: {} } } ]; - src/index.ts:206-237 (handler)The getPricing() function that returns a JSON string of all current ProofStream pricing, services, urgency fees, travel, payment, service area, and contact info.
function getPricing(): string { return JSON.stringify({ services: { product_verification: { description: 'Physical product authentication — serial numbers, packaging, labels, authentication markers', standard: '$39 (photo + video report, 24-48 hour turnaround)', with_livestream: '$79 (watch in real time + report)', turnaround: '24-48 hours', }, document_verification: { description: 'Confirm a physical document exists, matches claimed content, photograph stamps/signatures/seals', standard: '$99 (photo evidence + written report, 24-48 hours)', with_livestream: '$149', turnaround: '24-48 hours', }, property_asset_check: { description: 'On-site visual condition documentation — property, vehicle, or asset', standard: '$249 (standardized checklist + 30-50 photos + condition summary)', with_livestream: '$349 (watch and direct the verifier in real time)', turnaround: '48-72 hours (location dependent)', }, }, urgency_fees: { rush: '+50% (verification within 24 hours, limited availability)', same_day: '+100% (same-day, very limited availability)', }, travel: 'Travel 50+ miles from verifier location billed at IRS mileage rate', payment: 'Card authorized at submission, charged only if request is accepted', service_area: 'Ohio, Indiana, Kentucky, West Virginia, Western PA, Southern MI & Eastern IL. Additional areas announced soon.', contact: 'verify@proofstream.ai | proofstream.ai', }); } - src/index.ts:256-258 (handler)Switch case in CallToolRequestSchema handler that routes proofstream_get_pricing to the getPricing() function.
case 'proofstream_get_pricing': result = getPricing(); break;