Backendless Integration for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Backendless MCP or direct API to query data, manage users, trigger custom API services, and send notifications through natural language.
Backendless Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Supported Tools

Tools
Copy FileTool to copy a file or directory within backendless file storage.
Create DirectoryTool to create a new directory at the specified path.
Create Backendless HiveTool to create a new hive.
Create Backendless TimerTool to create a new timer with schedule and code.
Delete DirectoryTool to delete a directory at the specified path in backendless file storage.
Delete FileTool to delete a file at the specified path in backendless file storage.
Delete Backendless TimerTool to delete a backendless timer by name.
Directory ListingTool to retrieve a listing of files and directories at a given path.
General Object RetrievalTool to retrieve objects from a specified backendless table with filtering, sorting, and pagination.
Get All ValuesTool to retrieve all values from a map in a specified hive.
Get Counter ValueTool to retrieve the current value of a backendless counter.
Get File CountTool to get the count of files in a backendless directory.
Get Key ItemsTool to retrieve values for a specified key in a list (all, single, or range).
Get Backendless TimerTool to retrieve information about a specific timer.
Map PutTool to set or update key-value pairs in a hive map.
Move FileTool to move a file or directory within backendless file storage.
Publish MessageTool to publish a message to a specified messaging channel.
Reset CounterTool to reset a backendless counter back to zero.
Set Counter ValueTool to set a backendless counter to a specific value conditionally.
Update Backendless TimerTool to update schedule or code of an existing timer.
Change User PasswordTool to change the password for the current user.
Delete UserTool to delete a user by user id.
Find User by IDTool to retrieve user information by id.
Grant Permission to UserTool to grant a permission to a user on a specific data object.
User LoginTool to log in a registered user with identity and password.
User LogoutTool to log out the currently authenticated user.
User Password RecoveryTool to initiate password recovery for a user.
User RegistrationTool to register a new user with email and password.
Revoke Permission from UserTool to revoke a permission from a specified user or role on a data table.
Update UserTool to update properties of an existing backendless user.
Validate User TokenTool to validate a user session token.

Connect Backendless MCP Tool with your Agent

Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Initialize the Composio client and create a Tool Router session

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Backendless tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('List all files in /user_uploads directory')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI agent

Connect Backendless API Tool with your Agent

Python
TypeScript

Install Composio

python
pip install composio_openai
Install the Composio SDK

Initialize Composio and Create Tool Router Session

python
from openai import OpenAI
from composio import Composio
from composio_openai import OpenAIResponsesProvider

composio = Composio(provider=OpenAIResponsesProvider())
openai = OpenAI()
session = composio.create(user_id='your-user-id')
Import and initialize Composio client, then create a Tool Router session

Execute Backendless Tools via Tool Router with Your Agent

python
tools = session.tools
response = openai.responses.create(
  model='gpt-4.1',
  tools=tools,
  input=[{
    'role': 'user',
    'content': 'List all users created this week in the Users table'
  }]
)
result = composio.provider.handle_tool_calls(
  response=response,
  user_id='your-user-id'
)
print(result)
Get tools from Tool Router session and execute Backendless actions with your Agent

Why Use Composio?

AI Native Backendless Integration

  • Supports both Backendless MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Backendless data

Managed Auth

  • Built-in API key management so you never have to expose secrets in code
  • Central place to manage, scope, and revoke Backendless access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Backendless
  • Scoped, least privilege access to Backendless resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

Do I need my own developer credentials to use Backendless with Composio?

Yes, Backendless requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Used by agents from

Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.