Vexi MCP Server
Enables MCP clients to search and retrieve structured business data from the Vexi API, allowing AI agents to get clean, typed business objects with identity, offerings, and trust signals.
README
@getvexi/mcp
npm version License: MIT Website
Structured business data for AI agents - connect Claude, Cursor, and any MCP-compatible client to the Vexi API in 30 seconds.
What is Vexi?
Vexi is a structured business data API designed for AI agents. Instead of scraping and parsing raw HTML, your agent gets a clean, typed Agent Business Object (ABO) - a JSON document with identity, offerings, contact channels, trust signals, and quality metadata.
With one call, agents can discover businesses, fetch full records, and request fresh crawls when data is missing or stale.
Prerequisites
- Node.js 18+
- A Vexi API key - get one free at https://getvexi.dev/signup
Installation
Claude Desktop
- Open your Claude Desktop MCP configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- Add or merge the
vexiserver entry undermcpServers. - Paste the following configuration (replace the API key with yours):
{
"mcpServers": {
"vexi": {
"command": "npx",
"args": ["-y", "@getvexi/mcp"],
"env": {
"VEXI_API_KEY": "vxi_live_..."
}
}
}
}
- Save the file and fully quit Claude Desktop.
- Relaunch Claude Desktop - the vexi tools should appear in your MCP tools list.
Cursor
- Open Cursor.
- Go to Settings > MCP.
- Add a new server:
- Command:
npx - Args:
-y,@getvexi/mcp - Env:
VEXI_API_KEY=vxi_live_...
- Save and restart Cursor.
Other MCP clients
Run the server via stdio:
npx -y @getvexi/mcp
Set VEXI_API_KEY in the process environment before starting the client.
Available Tools
| Tool | Description |
|---|---|
search_businesses |
Search for businesses by query and location |
get_business |
Get a full ABO for a specific business by slug |
crawl_business |
Queue a new business for crawling |
list_categories |
List all available business categories |
Example Usage
User: Find the top 3 CRM platforms in the US.
Claude calls search_businesses:
{
"query": "CRM platform",
"location": "US",
"limit": "3"
}
Claude: Here are three CRM platforms in the US:
| Business | Completeness |
|---|---|
| HubSpot | 0.94 |
| Salesforce | 0.97 |
| Pipedrive | 0.89 |
User: Give me full details on HubSpot.
Claude calls get_business:
{
"slug": "hubspot"
}
Claude: Returns the full ABO for HubSpot - identity, offerings, contact channels, trust signals, operations, agent interface hints, and quality metadata in one structured document.
ABO Schema
Every business is returned as an Agent Business Object with eight top-level sections:
{
"identity": {
"id": "biz_hubspot",
"name": "HubSpot",
"slug": "hubspot"
},
"offerings": {
"products": ["CRM", "Marketing Hub", "Sales Hub"],
"price_range": "$$"
},
"location": {
"headquarters": "Cambridge, MA",
"country": "US"
},
"contact": {
"website": "https://hubspot.com",
"email": "support@hubspot.com"
},
"trust": {
"rating": 4.5,
"review_count": 12000
},
"operations": {
"founded_year": 2006,
"employee_range": "5000+"
},
"agent_interface": {
"summary": "Inbound marketing and CRM platform for SMBs and enterprises",
"suggested_queries": ["Compare pricing tiers", "List integrations"]
},
"quality": {
"completeness_score": 0.94,
"last_updated": "2026-05-28T12:00:00Z"
}
}
Get your API Key
Sign up at https://getvexi.dev/signup.
Start free with 500 credits - no credit card required.
Links
- Website: https://getvexi.dev
- API Docs: https://getvexi.dev/docs
- Dashboard: https://getvexi.dev/dashboard
- npm: https://www.npmjs.com/package/@getvexi/mcp
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.