Backendless Console SDK MCP Server

Backendless Console SDK MCP Server

Enables AI assistants to manage Backendless applications, including databases, users, files, and API services, through natural language commands, with support for OAuth2 authentication and hosted endpoints.

Category
访问服务器

README

Backendless Console SDK MCP Server

NPM Version MIT licensed

A Model Context Protocol (MCP) server that provides AI assistants with programmatic access to Backendless administration and developer APIs.

Backendless MCP enables AI assistants to directly manage your Backendless applications through natural language:

Create a new table called "Products" with columns: name (string), price (number), and inStock (boolean)
List all users who registered in the last 7 days

Your AI assistant can now:

  • 1️⃣ Manage databases, users, files, etc.
  • 2️⃣ Query data and perform operations
  • 3️⃣ All without leaving your development environment

🚀 What is this for?

This MCP server enables AI assistants (like Claude, ChatGPT, Cursor, etc.) to interact with your Backendless applications through the Backendless Console SDK. It exposes a comprehensive set of tools for managing databases, users, API services, cloud code, and other Backendless resources directly from your AI-powered development environment.

Key benefits:

  • Direct Backendless integration: Access all Backendless admin APIs through natural language
  • Dynamic tool loading: Tools are automatically generated from the Backendless Console SDK
  • Secure authentication: Supports OAuth2 authentication
  • Flexible usage: Use hosted endpoints

✨ Features

  • Comprehensive API coverage: Automatically exposes all available Backendless Console SDK methods as MCP tools
  • Session management: Maintains authenticated sessions with Backendless servers
  • OAuth2 authentication method:
  • Multi-cluster support: Connect to US, EU, local, or Backendless PRO clusters
  • Hosted: Use Backendless-provided MCP endpoints (zero setup)

📋 Prerequisites

  • Backendless account with API access

📦 Installation

Note: Installation is not required if you're using the Backendless hosted MCP endpoints.

🛠️ Usage

Backendless Hosted MCP (Easiest - Recommended)

Each Backendless cluster provides a hosted MCP server endpoint. This is the easiest way to get started - no installation or server setup required!

Available endpoints:

  • US Cluster: https://develop.backendless.com/mcp
  • EU Cluster: https://eu-develop.backendless.com/mcp

<details> <summary><b>Install in Cursor</b></summary>

Go to: SettingsCursor SettingsMCPAdd new global MCP server

Cursor Hosted Connection

{
  "mcp": {
    "servers": {
      "backendless": {
        "type": "http",
        "url": "https://develop.backendless.com/mcp"
      }
    }
  }
}

Cursor Local Connection

</details>

<details> <summary><b>Install in Claude Code</b></summary>

Claude Code Hosted Connection

Run this command:

claude mcp add --transport http backendless https://develop.backendless.com/mcp

</details>

<details> <summary><b>Install in VS Code</b></summary>

Add to your VS Code MCP settings. See VS Code MCP docs for more info.

VS Code Hosted Connection

{
  "mcp": {
    "servers": {
      "backendless": {
        "type": "http",
        "url": "https://develop.backendless.com/mcp"
      }
    }
  }
}

</details>

<details> <summary><b>Install in Windsurf</b></summary>

Add to your Windsurf MCP configuration. See Windsurf MCP docs for more info.

Windsurf Hosted Connection

{
  "mcpServers": {
    "backendless": {
      "serverUrl": "https://develop.backendless.com/mcp"
    }
  }
}

</details>

<details> <summary><b>Install in Cline</b></summary>

You can easily install Backendless through the Cline MCP Server configuration:

  1. Open Cline
  2. Click the hamburger menu icon (☰) to enter the MCP Servers section
  3. Choose Remote Servers tab
  4. Click the Edit Configuration button
  5. Add backendless to mcpServers:

Cline Hosted Connection

{
  "mcpServers": {
    "backendless": {
      "url": "https://develop.backendless.com/mcp",
      "type": "streamableHttp"
    }
  }
}

</details>

<details> <summary><b>Install in Roo Code</b></summary>

Add this to your Roo Code MCP configuration file. See Roo Code MCP docs for more info.

Roo Code Hosted Connection

{
  "mcpServers": {
    "backendless": {
      "type": "streamable-http",
      "url": "https://develop.backendless.com/mcp"
    }
  }
}

</details>

<details> <summary><b>Install in Claude Desktop</b></summary>

Hosted Connection

Open Claude Desktop and navigate to Settings > Connectors > Add Custom Connector. Enter the name as Backendless and the remote MCP server URL as https://develop.backendless.com/mcp.

</details>

<details> <summary><b>Install in Opencode</b></summary>

Add this to your Opencode configuration file. See Opencode MCP docs for more info.

Opencode Hosted Connection

{
  "mcp": {
    "backendless": {
      "type": "remote",
      "url": "https://develop.backendless.com/mcp",
      "enabled": true
    }
  }
}

</details>

<details> <summary><b>Install in Qodo Gen</b></summary>

See Qodo Gen docs for more details.

  1. Open Qodo Gen chat panel in VSCode or IntelliJ
  2. Click Connect more tools
  3. Click + Add new MCP
  4. Add the following configuration:

Qodo Gen Hosted Connection

{
  "mcpServers": {
    "backendless": {
      "url": "https://develop.backendless.com/mcp"
    }
  }
}

</details>

<details> <summary><b>Install in Trae</b></summary>

Use the Add manually feature and fill in the JSON configuration information for that MCP server. For more details, visit the Trae documentation.

Trae Hosted Connection

{
  "mcpServers": {
    "backendless": {
      "url": "https://develop.backendless.com/mcp"
    }
  }
}

</details>

<details> <summary><b>Testing with MCP Inspector</b></summary>

Start your server and test with the MCP Inspector:

# Start the server
BACKENDLESS_HOST=us PORT=3003 npm run start:http

# In another terminal, run the inspector
npx @modelcontextprotocol/inspector

Configure the inspector:

  • Transport Type: Streamable HTTP
  • URL: http://localhost:3003/mcp

</details>

🔨 Available Tools

Tools are dynamically loaded from the Backendless Console SDK definitions. The available tools include operations for:

  • Data Management: Create, read, update, delete tables and records
  • User Management: User registration, authentication, role management
  • API Services: Manage and invoke custom API services
  • Cloud Code: Deploy and manage server-side business logic
  • Files: File upload, download, and management
  • Messaging: Push notifications and email management
  • Geolocation: Location-based services
  • And more: All Backendless Console SDK capabilities

Special Tools

  • getSDKInfo: Get current SDK session information and status

🔐 Authentication

For Hosted & Self-Hosted HTTP Mode

The server supports OAuth2 authentication method:

OAuth2 Bearer Token: Use standard OAuth2 Bearer authentication

Authorization: Bearer YOUR_TOKEN

When authentication fails, the server responds with a 401 status and WWW-Authenticate header pointing to the OAuth2 discovery endpoints.

🏗️ Architecture

┌─────────────────┐
│  AI Assistant   │
│ (Claude, etc.)  │
└────────┬────────┘
         │ MCP Protocol
         │ (HTTP)
         ▼
┌─────────────────┐
│   MCP Server    │
│  (This Package) │
└────────┬────────┘
         │ Backendless Console SDK
         ▼
┌─────────────────┐
│   Backendless   │
│     Cluster     │
└─────────────────┘

🚨 Troubleshooting

<details> <summary><b>Connection Issues</b></summary>

Symptom: Cannot connect to Backendless cluster

Solutions:

  • Check your network connection and firewall settings
  • For hosted endpoints, ensure you can access https://develop.backendless.com or https://eu-develop.backendless.com in your browser

</details>

<details> <summary><b>Tool Not Found Errors</b></summary>

Symptom: "Tool not found" errors when trying to use specific operations

Solutions:

  • Use getSDKInfo to check available methods
  • Ensure you're using the latest version of the MCP server
  • Check the Backendless Console SDK version being used

</details>

<details> <summary><b>Port Already in Use</b></summary>

Symptom: "EADDRINUSE" error when starting HTTP server

Solutions:

  • Change the PORT environment variable to an available port
  • Check if another process is using port 3003: lsof -i :3003 (Unix/Mac) or netstat -ano | findstr :3003 (Windows)
  • Kill the process using the port or choose a different port

</details>

🔗 Links

📄 License

MIT

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

💬 Support

For issues related to:

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选