Ceveto MCP Server
Enables AI agents to interact with the Ceveto business management API through MCP, with permission-filtered tools and secure Ed25519 authentication.
README
Ceveto MCP Server
MCP (Model Context Protocol) server for AI agent access to the Ceveto business management API.
Quick Start
uvx --from git+https://github.com/Ceveto/mcp-server ceveto-mcp
Claude Code Setup
Add to your .mcp.json:
{
"mcpServers": {
"ceveto": {
"command": "uvx",
"args": ["--from", "git+https://github.com/Ceveto/mcp-server", "ceveto-mcp"],
"env": {
"CEVETO_MCP_BASE_URL": "https://api.ceveto.com",
"CEVETO_MCP_USERNAME": "<your-api-username>",
"CEVETO_MCP_PRIVATE_KEY": "<your-api-private-key>"
}
}
}
}
Or install the Ceveto Claude Plugin for automated setup.
Getting Credentials
- Log in to your Ceveto dashboard
- Go to Settings → API Keys
- Click Create API Key
- Save the username and private key (shown once)
Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
CEVETO_MCP_USERNAME |
Yes | — | API user username |
CEVETO_MCP_PRIVATE_KEY |
Yes | — | Ed25519 private key (hex) |
CEVETO_MCP_BASE_URL |
No | https://api.ceveto.com |
API base URL |
CEVETO_MCP_DEFAULT_ACCOUNT |
No | — | Default account slug/UUID |
CEVETO_MCP_MODULES |
No | — | Comma-separated OpenAPI tags to filter |
CEVETO_MCP_TRANSPORT |
No | stdio |
Transport: stdio or sse |
CEVETO_MCP_PORT |
No | 8500 |
Port for SSE mode |
How It Works
- On startup, fetches the OpenAPI schema from the Ceveto API
- Checks your permissions via
/company-api/me/ - Generates MCP tools for each permitted API endpoint
- Tools include parameter schemas, descriptions, and permission limits
Docker (SSE mode)
docker build -t ceveto-mcp .
docker run -p 8500:8500 \
-e CEVETO_MCP_USERNAME=... \
-e CEVETO_MCP_PRIVATE_KEY=... \
-e CEVETO_MCP_BASE_URL=https://api.ceveto.com \
ceveto-mcp
Hosted Instances
| Environment | MCP Server | Backend API |
|---|---|---|
| Production | https://mcp.ceveto.com |
https://api.ceveto.com |
| Staging | https://mcp.ceveto.dev |
https://api.ceveto.dev |
Hosted mode (multi-tenant, no credentials needed on server):
ceveto-mcp --hosted --transport sse --port 8500
Security
- Ed25519 signatures — every API request is cryptographically signed
- OAuth 2.1 — browser-based authorization with PKCE
- Permission-filtered tools — only endpoints you have access to become tools
- Method-level filtering — read-only keys don't see write operations
- No secrets stored — credentials only in environment variables
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.