Ceveto MCP Server

Ceveto MCP Server

Enables AI agents to interact with the Ceveto business management API through MCP, with permission-filtered tools and secure Ed25519 authentication.

Category
Visit Server

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

  1. Log in to your Ceveto dashboard
  2. Go to Settings → API Keys
  3. Click Create API Key
  4. 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

  1. On startup, fetches the OpenAPI schema from the Ceveto API
  2. Checks your permissions via /company-api/me/
  3. Generates MCP tools for each permitted API endpoint
  4. 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

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured