veryfi-mcp-server
OfficialClick on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@veryfi-mcp-serverextract data from this receipt"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Server for Veryfi Document Processing
Overview
A Model Context Protocol (MCP) server implementation that integrates with Veryfi for data extraction from documents
Related MCP server: Blackbird MCP Server
Setup
Get your Veryfi username, client_id, and api key
Log into https://app.veryfi.com, then navigate to https://app.veryfi.com/api/settings/keys/
With Claude Desktop
Modify claude_desktop_config.json to include this:
Do not set environment variables here. It will cause confusion if the enviroment variables used by the MCP server differ from those used by your other code.
Instead, setting them in your execution environmont or using a .env file.
{
"mcpServers": {
"veryfi": {
"command": "uv",
"args": [
"--directory",
"path/to/mcp-server",
"run",
"src/server.py"
],
"env": {}
}
}
}Development Setup
Local Development
Clone the repository
Create a
.envfile with the following variables:VERYFI_CLIENT_ID="veryfi-client-id-goes-here_client_id" VERYFI_USERNAME="veryfi-username-goes-here" VERYFI_API_KEY="veryfi-api-key-goes-here"
Alternatively, you can set your environment variables in your execution environment. For example, on a Mac, append this to your ~/.zprofile
export VERYFI_CLIENT_ID="veryfi-client-id-goes-here_client_id"
export VERYFI_USERNAME="veryfi-username-goes-here"
export VERYFI_API_KEY="veryfi-api-key-goes-here"Install dependencies:
pip install uv uv syncRun the server locally:
uv run mcp dev src/server.py
Testing
Run the test suite with:
uv run pytestThis server cannot be deployed
Maintenance
Related MCP Connectors
AI document intelligence: extract, summarize, claim-check, notarize, and signed action receipts.
Invoice and receipt extractor: reads PDF and image invoices/receipts with AI, pulling date…
Turn PDFs and images into typed fields — invoices, receipts, IDs and custom models — via Mindee OCR.
Verified extraction: source-backed JSON from PDFs/URLs; honest null + signed receipt.
Related MCP Servers
AlicenseAqualityBmaintenanceEnables integration with Vapi APIs through function calling via the Model Context Protocol, allowing AI models to access Vapi's capabilities.13487 npm58MIT- AlicenseNot gradedqualityDmaintenanceEnables LLMs to access Blackbird AI's services through the Model Context Protocol, using Blackbird API credentials for authentication.6MIT
- AlicenseNot gradedqualityDmaintenanceImplements the Model Context Protocol for managing, ingesting, and querying structured and unstructured data with integration to graph databases, vector search, and LLMs.3MIT
- AlicenseNot gradedqualityCmaintenanceEnables reading and analysis of PDF, Excel, Word, and PowerPoint files through the Model Context Protocol, supporting content extraction, document search, and file upload.5MIT