What this MCP is for

This server exposes Dataravn APIs as MCP tools so you can query and work with your backup data directly from Cursor (or any MCP client). All requests use your Dataravn API key for authentication.

backup_registers

List and filter backup registers (Podio, e-conomic, M365). Use this first when you need to find a specific backup by title, org, type, or status.

podio

Podio actions: workspaces, apps, items, tasks, comments, files, members, and more. Works with your Podio backup registers.

economic

e-conomic resources: customers, invoices, products, orders, and more. Works with your e-conomic backup registers.

How to connect

Add this server in Cursor with type streamableHttp. You only need to replace your-dataraven-api-key-here with your real Dataravn API key in the Authorization header.

Config file: .cursor/mcp.json (project) or ~/.cursor/mcp.json (global).

{
  "mcpServers": {
    "betabackup-mcp-server": {
      "type": "streamableHttp",
      "url": "https://mcp.dataravn.com/",
      "headers": {
        "Authorization": "Bearer your-dataraven-api-key-here"
      }
    }
  }
}
  1. Get your Dataravn API key from the Dataravn app (account or integration settings).
  2. Copy the config above (or use the button), paste it into .cursor/mcp.json, and replace your-dataraven-api-key-here with your real key.
  3. Restart Cursor or reload MCP servers. The tools backup_registers, podio, and economic should appear.

In Antigravity, go to MCP serversManage MCP serverView raw config, then follow the steps below. Replace your-dataraven-api-key-here with your real Dataravn API key in the Authorization header.

  1. Click MCP servers in Antigravity.
  2. Click Manage MCP server.
  3. Click View raw config.
  4. Copy the config below (or use the button) and replace your-dataraven-api-key-here with your real key.
  5. Paste the config into the raw config and save. The tools backup_registers, podio, and economic should appear.
{
  "mcpServers": {
    "betabackup-mcp-server": {
      "serverUrl": "https://mcp.dataravn.com/",
      "headers": {
        "Authorization": "Bearer your-dataraven-api-key-here",
        "Accept": "application/json, text/event-stream"
      },
      "disabledTools": []
    }
  }
}

In Codex, go to SettingsMCP settings → open MCP settings → Add server, then follow the steps below. Replace your-dataraven-api-key-here with your real Dataravn API key.

  1. Open Settings in Codex.
  2. Go to MCP settings and open MCP settings.
  3. Click Add server.
  4. Choose Streamable HTTP as the connection type.
  5. Fill in:
Field Value
Name data_raven_mcp (or any name you like)
URL https://mcp.dataravn.com/
Headers → Key Authorization
Headers → Value Bearer your-dataraven-api-key-here

Click Save. The tools backup_registers, podio, and economic should appear.

In Jan AI, go to SettingsMCP ServersAdd MCP Server, then follow the steps below. Configuration is the same as Codex. Replace your-dataraven-api-key-here with your real Dataravn API key.

  1. Open Settings in Jan AI.
  2. Go to MCP Servers.
  3. Click Add MCP Server.
  4. Choose HTTP as the connection type.
  5. Fill in:
Field Value
Server name data_raven_mcp (or any name you like)
URL https://mcp.dataravn.com/
Headers → Key Authorization
Headers → Value Bearer your-dataraven-api-key-here

Click Save. The tools backup_registers, podio, and economic should appear.