Skip to main content
CloudVeryfront Cloud

Cloud hosting for AI projects

Veryfront Cloud
Veryfront Cloud hosts AI projects and environments across teams. It supports collaboration, deployments, and integration through APIs and MCP.

API

Veryfront provides three ways to integrate programmatically:
ProtocolEndpoint
RESThttps://api.veryfront.com
GraphQLhttps://api.veryfront.com/graphql
MCPhttps://api.veryfront.com/mcp

Authentication

Create an API key at veryfront.com/dashboard/api-keys.

MCP

Connect your AI coding assistants to Veryfront using the Model Context Protocol (MCP). MCP allows Claude, Cursor, and other AI tools to interact directly with your Veryfront projects.

Claude Code

Connect Claude Code CLI to Veryfront. Run this command in your terminal:
claude mcp add \
  --header "Authorization: Bearer YOUR_API_KEY" \
  --transport http \
  veryfront \
  https://api.veryfront.com/mcp

Cursor

Add this to your Cursor settings (Settings → MCP Servers):
{
  "mcpServers": {
    "veryfront": {
      "url": "https://api.veryfront.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Other MCP Clients

Generic MCP configuration for Windmill, Continue, and other MCP-compatible tools:
{
  "mcpServers": {
    "veryfront": {
      "transport": "http",
      "url": "https://api.veryfront.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

MCP Inspector

Debug and test the Veryfront MCP server interactively. Add the Authorization header with your Bearer token in the inspector UI.
npx @modelcontextprotocol/inspector \
  --transport http \
  --server-url "https://api.veryfront.com/mcp"