vexis-mcp
v0.0.1
Published
Vexis MCP Server — AI agent identity and trust tools for Claude, Cursor, and MCP-compatible agents
Downloads
29
Readme
vexis-mcp
Vexis MCP Server — give any MCP-compatible AI agent cryptographic identity and trust infrastructure in minutes. This server wraps the Vexis SDK and exposes its core functions as MCP tools, so agents running in Claude Desktop, Cursor, or any MCP-compatible host can issue passports, verify other agents, record attestations, and query the trust graph.
Quick Setup
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"vexis": {
"command": "npx",
"args": ["-y", "vexis-mcp"],
"env": {
"VEXIS_API_KEY": "your-api-key-here",
"VEXIS_BASE_URL": "https://vexis-api.vexis.workers.dev"
}
}
}
}Cursor
Add to your Cursor MCP config (~/.cursor/mcp.json or workspace .cursor/mcp.json):
{
"mcpServers": {
"vexis": {
"command": "npx",
"args": ["-y", "vexis-mcp"],
"env": {
"VEXIS_API_KEY": "your-api-key-here",
"VEXIS_BASE_URL": "https://vexis-api.vexis.workers.dev"
}
}
}
}Environment Variables
| Variable | Required | Description |
|---|---|---|
| VEXIS_API_KEY | Yes | Your Vexis API key |
| VEXIS_BASE_URL | No | API base URL (default: production endpoint) |
Get your API key from the Vexis Dashboard.
Available Tools
| Tool | Description |
|---|---|
| vexis_issue | Issue a cryptographic passport (JWT) for an AI agent with named capabilities |
| vexis_verify | Verify an agent's passport token and get their trust score (0-100) |
| vexis_attest | Record an action taken by an agent — feeds the trust graph |
| vexis_lookup | Look up full details for a passport including attestation and verification history |
| vexis_trust | Query trust scores for an agent, organization, or cross-org relationship |
