ProofStream MCP Server
OfficialMCP-сервер ProofStream
Предоставьте своему ИИ-агенту возможность направлять специалиста для физической проверки чего-либо в реальном мире.
Что это дает
ProofStream — это единственный API, который позволяет вашему ИИ-агенту отправить человека для физической проверки чего угодно — подлинности товара, состояния недвижимости, наличия документа — и получить отчет с доказательствами, фотографиями, видео и письменными выводами с отметками времени.
Ваш агент больше не ограничен рамками цифрового мира.
Related MCP server: humanrail-mcp-server
Инструменты
proofstream_submit_request
Отправка запроса на верификацию. Реальный специалист выезжает на место с камерой, проводит прямую трансляцию проверки (опционально) и предоставляет полный пакет доказательств.
Услуги:
product— Проверка подлинности физического товара ($39 / $79 с прямой трансляцией)document— Подтверждение наличия и содержания документа ($99 / $149 с прямой трансляцией)property— Документирование состояния недвижимости или активов ($249 / $349 с прямой трансляцией)
Срочность: standard (24-72 ч) | rush (+50%) | same_day (+100%)
proofstream_check_status
Проверка статуса отправленного запроса по ID дела.
proofstream_get_pricing
Получение актуальных цен и подробной информации об услугах.
Установка
Claude Desktop / MCP Client
{
"mcpServers": {
"proofstream": {
"command": "npx",
"args": ["proofstream-mcp"]
}
}
}npm (глобально)
npm install -g proofstream-mcpПример использования
Agent: I need to verify that the product at 123 Main St, Columbus OH matches the description before we complete the purchase.
Tool call: proofstream_submit_request({
"name": "Acme Corp",
"email": "ops@acmecorp.com",
"client_type": "AI Agent / Autonomous System",
"service": "product",
"livestream": "yes",
"description": "Verify a 2024 MacBook Pro 16-inch (Space Black) — confirm serial number MXW73LL/A, check for damage, confirm all original accessories present",
"location": "123 Main St, Columbus OH 43201",
"preferred_date": "2026-05-06",
"urgency": "standard"
})
Response: {
"success": true,
"case_id": "PS-XK9M2P",
"quoted_amount": 79,
"message": "Request received. ProofStream will review and respond within a few hours."
}Зона обслуживания
Огайо, Индиана, Кентукки, Западная Виргиния, Западная Пенсильвания, Южный Мичиган и Восточный Иллинойс. Скоро расширение зоны покрытия.
API
Прямой REST API также доступен по адресу https://api.proofstream.ai. Полную форму заявки см. на proofstream.ai/request.html.
Контакты: verify@proofstream.ai | proofstream.ai
Available Tools
3 toolsproofstream_check_statusA
Check the status of a ProofStream verification request by case ID.
Status values:
pending_review: Request received, awaiting ProofStream acceptance
confirmed: Accepted, payment captured, verification scheduled
scheduled: Verification date/time confirmed
in_progress: Verifier on-site, livestream active (if requested)
completed: Verification done, report delivered to email
cancelled: Request declined (no charge)
When status is "completed", the full evidence report and invoice have been emailed to the address provided at submission.
| Name | Required | Description | Default |
|---|---|---|---|
| case_id | Yes | Case ID returned from proofstream_submit_request (e.g., PS-ABC123) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description fully bears the burden of behavioral disclosure. It lists all possible status values and their meanings, including what happens when completed (report and invoice emailed), providing comprehensive behavioral transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured, with a clear opening sentence followed by bullet points for statuses. Every sentence is informative with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is complete for a status-checking tool: it explains the input, the status values, and the outcome when completed. Since there is no output schema, the description adequately covers return behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter is fully described in the schema (100% coverage). The description adds value by specifying that the case ID comes from proofstream_submit_request and provides an example format, going beyond the schema's minimal description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool checks the status of a ProofStream verification request by case ID. It distinguishes itself from sibling tools (proofstream_submit_request and proofstream_get_pricing) by focusing solely on status retrieval.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage after submitting a request, but does not explicitly state when not to use it or mention alternatives. However, the sibling tool names make the context clear enough for an agent to select correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
proofstream_get_pricingA
Get current ProofStream pricing and service details without making a request.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It implies a safe read operation via 'without making a request', but does not disclose authentication needs, rate limits, or whether pricing data is cached/real-time.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded, no wasted words. Every part of the description adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple zero-param read tool, the description is adequate but minimal. It lacks details about the return format or any constraints (e.g., caching). Given no output schema, more context would help.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, and schema coverage is 100%. The description adds meaning by clarifying the tool is a read-only pricing lookup, which helps the agent understand its role beyond the empty schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool gets current ProofStream pricing and service details. The phrase 'without making a request' distinguishes it from mutation siblings like submit_request, but it could be more specific about what 'service details' encompasses.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool vs alternatives. The sibling names (check_status, submit_request) provide context, but there is no direct statement about when not to use it or which sibling to prefer.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
proofstream_submit_requestA
Submit a human verification request to ProofStream. A real human will go on-site with a camera, livestream the verification, and deliver a timestamped evidence report (photo + video + written findings). Use this when your workflow requires physical confirmation of something in the real world.
Services available:
product_verification ($39 standard / $79 with livestream): Authenticate a physical product — serial numbers, packaging, labels, authentication markers.
document_verification ($99 standard / $149 with livestream): Confirm a physical document exists, matches claimed content, photograph stamps/signatures/seals.
property_asset_check ($249 standard / $349 with livestream): On-site visual condition documentation of a property, vehicle, or asset.
Urgency options: standard (24-72 hours), rush (+50%, within 24h), same_day (+100%)
Returns a case_id you can use to check status. Card is authorized but NOT charged until ProofStream accepts the request.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Requester full name | |
| Yes | Email for report delivery and credentials | ||
| company | No | Organization name (optional) | |
| client_type | No | Type of requester | AI Agent / Autonomous System |
| service | Yes | product = Product Verification | document = Document Verification | property = Property & Asset Check | |
| livestream | No | Whether to include live video feed access (adds cost) | no |
| urgency | No | standard = 24-72 hours | rush = within 24h (+50%) | same_day = +100% | standard |
| description | Yes | What needs to be verified — be specific | |
| location | Yes | Physical address or location of the item/property to verify | |
| preferred_date | No | Preferred verification date (YYYY-MM-DD) | |
| metrics | No | Specific checkpoints or things to look for during verification | |
| access_notes | No | Access instructions, contact info for site access | |
| deliverables | No | Required deliverables (Timestamped photo report always included) | |
| billing | No | one_time |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It details human on-site verification, livestream, report deliverables, and billing behavior (authorized but not charged until acceptance). Fully transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is informative but lengthy (multiple paragraphs). However, it is well-structured with clear sections for services, urgency, and process. Could be more concise without losing value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers purpose, parameters, pricing, services, process, and billing. No output schema but mentions return of case_id. Adequate for complex tool with 14 parameters.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 93%, so baseline is 3. Description adds pricing context per service and urgency surcharges, and clarifies billing authorization. Adds meaningful value beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool submits a human verification request to ProofStream for physical confirmation. It distinguishes from siblings (check_status and get_pricing) by specifying the action and scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use ('physical confirmation of something in the real world') and lists services/urgency options. Lacks explicit when-not-to-use or alternative tool references, but context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
v0.1.0- First observed
proofstream_check_status - First observed
proofstream_get_pricing - First observed
proofstream_submit_request
TDQS
The three tools have clearly distinct purposes: checking status, getting pricing, and submitting requests. No overlap in functionality.
All tool names follow the consistent pattern 'proofstream_verb_noun' using snake_case, e.g., check_status, get_pricing, submit_request.
Three tools is appropriate for a focused service that covers the main workflow: pricing inquiry, submission, and status checking.
The tool set covers the essential lifecycle: pricing, submission, and status check. Minor gaps exist, such as no explicit cancellation tool, but the status includes cancellation.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Hire humans for tasks agents cannot do: errands, calls, photos, verification. Escrowed, verified.
Dispatch real-world physical tasks to verified human operators. Escrow or direct-settlement.
Expert review for AI agents. On-chain proof of human review.
Human-in-the-loop API for AI agents. CAPTCHA, OTP, KYC, and approvals by real humans.
Related MCP Servers
- AlicenseAqualityFmaintenanceEnables AI agents to search for and hire humans for real-world tasks.33627MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to route tasks requiring human judgment (e.g., content moderation, refund decisions, data verification) to a vetted worker pool, with verified results returned via Lightning Network payments.MIT
- FlicenseNot gradedqualityDmaintenanceLets AI agents natively discover and hire human experts for tasks they can't do themselves, such as research, verification, and expert calls.-
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to post real-world tasks, match them to people, and release payments through a delegation-based authorization system that enforces scoped, spend-capped permissions.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ProofStreamai/proofstream-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server