How to integrate Simla com MCP with Claude Code

Manage your Simla com directly from Claude Code with zero worries about OAuth hassles, API-breaking issues, or reliability and security concerns. You can do this in two different ways: Via Composio Connect - Direct and easiest approach Via Composio SDK - Programmatic approach with more control

Simla com logoSimla com
Api Key

Simla.com is a platform for integrating delivery services, managing orders, and handling customer data through robust APIs. It streamlines logistics, order tracking, and customer management for fast-growing businesses.

141 Tools

Introduction

Manage your Simla com directly from Claude Code with zero worries about OAuth hassles, API-breaking issues, or reliability and security concerns.

You can do this in two different ways:

  1. Via Composio Connect - Direct and easiest approach
  2. Via Composio SDK - Programmatic approach with more control

Also integrate Simla com with

Why use Composio?

  • Only one MCP URL to connect multiple apps with Claude Code with zero auth hassles.
  • Programmatic tool calling allows LLMs to write its code in a remote workbench to handle complex tool chaining. Reduces to-and-fro with LLMs for frequent tool calling.
  • Handling Large tool responses out of LLM context to minimize context rot.
  • Dynamic just-in-time access to 20,000 tools across 1000+ other Apps for cross-app workflows. It loads the tools you need, so LLMs aren't overwhelmed by tools you don't need.

Connecting Simla com to Claude Code using Composio

1. Add the Composio MCP to Claude

Terminal

2. Start Claude Code

bash
claude

3. Open your MCP list

bash
/mcp

4. Select Composio and click on Authenticate

Select Composio and click Authenticate

5. This will redirect you to the Composio OAuth page. Complete the flow by authorizing Composio and you're all set.

Composio OAuth authorization page
Composio authorization complete
Ask Claude to connect to your account and authenticate via the link

What is the Simla com MCP server, and what's possible with it?

The Simla com MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Simla com account. It provides structured and secure access to customer records, order management, delivery integration, and custom field data, so your agent can perform actions like creating orders, managing customers, updating tasks, and extending your CRM—all on your behalf.

  • Customer management and updates: Easily create new customers, update their details, or fetch specific customer profiles using flexible filters and identifiers.
  • Order creation and editing: Let your agent register new orders, update existing ones, or retrieve order information to streamline your sales and fulfillment workflows.
  • Custom field management: Enable your agent to create or update custom metadata fields for orders, customers, or companies, so your CRM data model can adapt to your business needs.
  • Task automation and tracking: Automatically create new tasks, assign them to team members, and keep all task details up to date for efficient collaboration and follow-up.
  • Bulk customer retrieval and segmentation: Fetch lists of customers with custom filters to support segmentation, analysis, or targeted outreach directly from your agent.

Connecting Simla com via Composio SDK

Composio SDK is the underlying tech that powers Rube. It's a universal gateway that does everything Rube does but with much more programmatic control. You can programmatically generate an MCP URL with the app you need (here Simla com) for even more tool search precision. It's secure and reliable.

How the Composio SDK works

The Composio SDK follows a three-phase workflow:

  1. Discovery: Searches for tools matching your task and returns relevant toolkits with their details.
  2. Authentication: Checks for active connections. If missing, creates an auth config and returns a connection URL via Auth Link.
  3. Execution: Executes the action using the authenticated connection.

Step-by-step Guide

Step by step10 STEPS
1

Prerequisites

Before starting, make sure you have:
  • Claude Pro, Max, or API billing enabled Anthropic account
  • Composio API Key
  • A Simla com account
  • Basic knowledge of Python or TypeScript
2

Install Claude Code

bash
# macOS, Linux, WSL
curl -fsSL https://claude.ai/install.sh | bash

# Windows PowerShell
irm https://claude.ai/install.ps1 | iex

# Windows CMD
curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd

To install Claude Code, use one of the following methods based on your operating system:

3

Set up Claude Code

bash
cd your-project-folder
claude

Open a terminal, go to your project folder, and start Claude Code:

  • Claude Code will open in your terminal
  • Follow the prompts to sign in with your Anthropic account
  • Complete the authentication flow
  • Once authenticated, you can start using Claude Code
Claude Code initial setup showing sign-in prompt
Claude Code terminal after successful login
4

Set up environment variables

bash
COMPOSIO_API_KEY=your_composio_api_key_here
USER_ID=your_user_id_here

Create a .env file in your project root with the following variables:

  • COMPOSIO_API_KEY authenticates with Composio (get it from Composio dashboard)
  • USER_ID identifies the user for session management (use any unique identifier)
5

Install Composio library

npm install @composio/core dotenv

Install the Composio TypeScript library to create MCP sessions.

  • @composio/core provides the core Composio functionality
  • dotenv loads environment variables from your .env file
6

Generate Composio MCP URL

import 'dotenv/config';
import { Composio } from '@composio/core';

const { COMPOSIO_API_KEY, USER_ID } = process.env;

if (!COMPOSIO_API_KEY || !USER_ID) {
  throw new Error('COMPOSIO_API_KEY and USER_ID required in .env');
}

const composioClient = new Composio({ apiKey: COMPOSIO_API_KEY });

const composioSession = await composioClient.create(USER_ID, {
  toolkits: ['simla_com'],
});

const composioMcpUrl = composioSession?.mcp.url;

console.log(`MCP URL: ${composioMcpUrl}`);
console.log(`\nUse this command to add to Claude Code:`);
console.log(`claude mcp add --transport http simla_com-composio "${composioMcpUrl}" --headers "X-API-Key:${COMPOSIO_API_KEY}"`);

Create a script to generate a Composio MCP URL for Simla com. This URL will be used to connect Claude Code to Simla com.

What's happening

  • We import the Composio client and load environment variables
  • Create a Composio instance with your API key
  • Call create() to create a Tool Router session for Simla com
  • The returned mcp.url is the MCP server URL that Claude Code will use
  • The script prints this URL so you can copy it
7

Run the script and copy the MCP URL

node --loader ts-node/esm generate_mcp_url.ts
# or if using tsx
tsx generate_mcp_url.ts

Run your TypeScript script to generate the MCP URL.

  • The script connects to Composio and creates a Tool Router session
  • It prints the MCP URL and the exact command you need to run
  • Copy the entire claude mcp add command from the output
8

Add Simla com MCP to Claude Code

bash
claude mcp add --transport http simla_com-composio "YOUR_MCP_URL_HERE" --headers "X-API-Key:YOUR_COMPOSIO_API_KEY"

# Then restart Claude Code
exit
claude

In your terminal, add the MCP server using the command from the previous step. The command format is:

  • claude mcp add registers a new MCP server with Claude Code
  • --transport http specifies that this is an HTTP-based MCP server
  • The server name (simla_com-composio) is how you'll reference it
  • The URL points to your Composio Tool Router session
  • --headers includes your Composio API key for authentication

After running the command, close the current Claude Code session and start a new one for the changes to take effect.

9

Verify the installation

bash
claude mcp list

Check that your Simla com MCP server is properly configured.

  • This command lists all MCP servers registered with Claude Code
  • You should see your simla_com-composio entry in the list
  • This confirms that Claude Code can now access Simla com tools

If everything is wired up, you should see your simla_com-composio entry listed:

Claude Code MCP list showing the toolkit MCP server
10

Authenticate Simla com

The first time you try to use Simla com tools, you'll be prompted to authenticate.

  • Claude Code will detect that you need to authenticate with Simla com
  • It will show you an authentication link
  • Open the link in your browser (or copy/paste it)
  • Complete the Simla com authorization flow
  • Return to the terminal and start using Simla com through Claude Code

Once authenticated, you can ask Claude Code to perform Simla com operations in natural language. For example:

  • "Create a new customer with email and phone"
  • "Update order status for a specific order"
  • "List customers who registered this week"

Complete Code

Here's the complete code to get you started with Simla com and Claude Code:

import 'dotenv/config';
import { Composio } from '@composio/core';

const { COMPOSIO_API_KEY, USER_ID } = process.env;

if (!COMPOSIO_API_KEY || !USER_ID) {
  throw new Error('COMPOSIO_API_KEY and USER_ID required in .env');
}

const composioClient = new Composio({ apiKey: COMPOSIO_API_KEY });

const composioSession = await composioClient.create(USER_ID, {
  toolkits: ['simla_com'],
});

const composioMcpUrl = composioSession?.mcp.url;

console.log(`MCP URL: ${composioMcpUrl}`);
console.log(`\nUse this command to add to Claude Code:`);
console.log(`claude mcp add --transport http simla_com-composio "${composioMcpUrl}" --headers "X-API-Key:${COMPOSIO_API_KEY}"`);

Conclusion

You've successfully integrated Simla com with Claude Code using Composio's MCP server. Now you can interact with Simla com directly from your terminal using natural language commands.

Key features of this setup:

  • Terminal-native experience without switching contexts
  • Natural language commands for Simla com operations
  • Secure authentication through Composio's managed MCP
  • Tool Router for dynamic tool discovery and execution

Next steps:

  • Try asking Claude Code to perform various Simla com operations
  • Add more toolkits to your Tool Router session for multi-app workflows
  • Integrate this setup into your development workflow for increased productivity

You can extend this by adding more toolkits, implementing custom workflows, or building automation scripts that leverage Claude Code's capabilities.

TOOLS

Supported Tools

Every Simla com action and event your agent gets out of the box.

Add Customer Interaction Favorite

Tool to add a product offer to a customer's list of favorites.

Combine Customers

Tool to combine multiple customers into one.

Combine Corporate Customers

Tool to combine multiple corporate customers into one.

Combine Orders

Tool to combine two orders into one.

Create Cost

Create a new cost record in Simla CRM.

Create Customer

Creates a new customer in Simla.

Create Corporate Customer

Creates a new corporate customer in Simla.

Create Customer Interaction Cart Set

Tool to create or overwrite shopping cart data for a customer.

Create Corporate Customer Address

Creates a new address for a corporate customer in Simla.

Create Corporate Customer Company

Tool to create a company for a corporate customer in Simla.

Create Corporate Customer Contact

Tool to create a link between a corporate customer and a contact person.

Create Corporate Customer Note

Tool to create a note for a corporate customer.

Create Customer Note

Tool to create a note for a customer.

Create Custom Field

Tool to create a custom field for a specified entity in Simla.

Create Custom Fields Dictionary

Tool to create a custom fields dictionary with elements.

Calculate Loyalty Discount

Tool to calculate maximum loyalty discount and bonuses for an order.

Create Order

Create a new order in Simla with customer details and line items.

Create Orders Link

Tool to create a link between multiple orders in Simla.

Create Order Pack

Tool to create a new order pack in Simla.

Create Order Payment

Create a new payment record for an order in Simla CRM.

Create Reference Courier

Tool to create a new courier in Simla.

Create Reference Currency

Tool to create a new currency in Simla.

Create Store Inventories Upload

Tool to batch update inventory quantities and purchase prices across warehouses/stores.

Create Store Product Groups

Tool to create a new product group in Simla.

Batch Create Store Products

Tool to batch create products and services in the store catalog.

Create Task

Tool to create a new task.

Create Web Analytics Visits Upload

Tool to batch upload web analytics visit records to Simla CRM.

Delete Cost

Tool to delete a cost by ID.

Delete Corporate Customer Note

Tool to delete a corporate customer note by ID.

Delete Customer Note

Tool to delete a customer note by ID.

Delete Order Payment

Tool to delete an order payment by ID.

Edit Cost

Tool to edit an existing cost record by ID.

Edit Customer

Tool to edit an existing customer.

Edit Corporate Customer

Tool to edit an existing corporate customer.

Edit Corporate Customer Address

Tool to edit an address for a corporate customer.

Edit Corporate Customer Company

Tool to edit a company associated with a corporate customer.

Edit Corporate Customer Contact

Tool to edit the link between a corporate customer and a contact person.

Edit Custom Field

Edit an existing custom field's properties by entity type and field code.

Edit Custom Fields Dictionary

Tool to edit an existing custom fields directory by code.

Edit Delivery Generic Setting

Tool to register or edit a delivery service integration configuration.

Edit File

Tool to edit an existing file by ID.

Edit Integration Module

Tool to create or edit an integration module configuration.

Edit Order

Tool to edit an existing order by external ID.

Edit Orders Payment

Tool to edit an existing order payment.

Edit Reference Cost Group

Tool to edit an existing cost group by code.

Edit Reference Cost Item

Tool to edit an existing cost item reference by code.

Edit Reference Courier

Tool to edit an existing courier by ID.

Edit Reference Currency

Tool to edit an existing currency configuration by ID.

Edit Reference Delivery Service

Tool to edit an existing delivery service by code.

Edit Reference Delivery Type

Tool to create or edit a delivery type in Simla.

Edit Reference Order Method

Tool to edit an existing order method reference by code.

Edit Reference Order Type

Tool to create or edit an order type by code.

Edit Reference Payment Status

Tool to edit an existing payment status reference by code.

Edit Reference Payment Type

Tool to edit an existing payment type or create a new one by code.

Edit Reference Price Type

Tool to edit an existing price type in the reference data.

Edit Product Status

Tool to create or edit product status in the reference directory.

Edit Reference Statuses

Tool to edit an existing order status reference by code.

Edit Reference Stores

Tool to create or edit a warehouse/store by code.

Edit Reference Subscription

Tool to create or edit a subscription category in Simla.

Edit Reference Unit

Tool to create or edit a unit of measurement reference by code.

Edit Store Product Group

Tool to edit an existing product group by external ID.

Edit Store Products Batch

Tool to batch edit multiple products and services at once.

Edit Store Setting

Tool to register or update warehouse system configuration in Simla.

Edit Task

Tool to edit an existing task.

Edit Telephony Setting

Tool to create or edit a telephony integration setting in Simla.

Fix Corporate Customers External IDs

Tool to perform mass recording of corporate customer external IDs in Simla.

Fix Customers External IDs

Tool to perform mass recording of customer external IDs in Simla.

Fix Orders External IDs

Tool to perform mass recording of order external IDs in Simla.

Get API Credentials

Tool to retrieve available API methods and stores for the current API key.

Get API Versions

Tool to retrieve a list of available API versions.

Get Cost

Retrieves detailed information about a specific cost record by its ID.

Get Customer

Retrieves detailed information about a specific customer by ID or external ID.

Get Corporate Customer

Retrieves detailed information about a corporate customer by external ID.

Get Customer Interaction Favorites

Tool to retrieve a list of favorite product offers for a specific customer.

Get Customers

Tool to retrieve a list of customers.

Get Corporate Customers

Tool to retrieve a list of corporate customers matching the specified filters.

Get Corporate Customer Companies

Tool to retrieve the list of companies associated with a corporate customer contact person.

Get Corporate Customers History

Tool to retrieve corporate customer change history for synchronization or audit purposes.

Get Corporate Customers Notes

Tool to retrieve a list of corporate customer notes.

Get Customers History

Tool to retrieve customer change history for synchronization or audit purposes.

Get Customers Notes

Tool to retrieve a list of customer notes.

Get Custom Field

Tool to retrieve detailed information about a specific custom field by entity and code.

Get Custom Fields

Tool to list custom fields.

Get Custom Fields Dictionaries

Tool to retrieve the list of custom dictionaries.

Get Custom Fields Dictionary

Tool to retrieve a custom fields dictionary by its code identifier.

Get Delivery Generic Setting

Tool to retrieve integration configuration for a delivery module instance.

Get Delivery Shipments

Tool to retrieve a list of delivery shipments.

Get Files

Tool to retrieve a list of files.

Get Loyalty Accounts

Tool to retrieve a list of customer loyalty program accounts.

Get Loyalty Bonus Operations

Tool to retrieve the history of bonus account operations for all participations.

Get Loyalty Loyalties

Tool to retrieve a list of loyalty programs.

Get Order

Tool to retrieve detailed information about a specific order.

Get Orders

Tool to retrieve a list of orders.

Get Orders History

Tool to retrieve order change history.

Get Orders Packs History

Tool to retrieve the history of order packing changes.

Get Products

Tool to retrieve a list of products.

Get Reference Cost Groups

Tool to retrieve a list of all cost groups configured in the system.

Get Reference Cost Items

Tool to retrieve a list of all cost items configured in the system.

Get Reference Countries

Tool to retrieve a list of all available country ISO codes in the system.

Get Reference Couriers

Tool to retrieve the list of available couriers.

Get Reference Currencies

Tool to retrieve the list of all configured currencies in the system.

Get Reference Delivery Services

Tool to retrieve a list of all configured delivery services in the system.

Get Reference Delivery Types

Tool to retrieve the list of delivery types from the system.

Get Reference Legal Entities

Tool to retrieve a list of all configured legal entities in the system.

Get MessageGateway Channels

Tool to retrieve a list of all MessageGateway channels in the system.

Get Reference Order Methods

Tool to retrieve a list of all available order methods in the system.

Get Reference Order Types

Tool to retrieve the list of order types from the system.

Get Reference Payment Statuses

Tool to retrieve the list of payment statuses configured in the system.

Get Reference Payment Types

Tool to retrieve a list of all configured payment types in the system.

Get Reference Price Types

Tool to retrieve the list of price types from the reference data.

Get Product Statuses

Tool to retrieve the list of all product statuses configured in the system.

Get Reference Statuses

Tool to retrieve the list of order statuses from the system.

Get Reference Status Groups

Tool to retrieve the list of all order status groups in the system.

Get Reference Subscriptions

Tool to retrieve the list of all subscription categories in the system.

Get Reference Units

Tool to retrieve the list of units of measurement from the system.

Get Segments

Tool to retrieve a list of customer segments.

Get Settings

Tool to retrieve system settings including default currency, language, timezone, and message gateway configuration.

Get Sites

Tool to retrieve a list of all configured sites/stores in the system.

Get Statistic Update

Tool to trigger an update of CRM basic statistics.

Get Store Inventories

Tool to retrieve store inventories with leftover stocks and purchasing prices.

Get Store Offers

Tool to retrieve a list of store offers with pagination support.

Get Store Products Properties

Tool to retrieve a list of product properties from the store.

Get Store Products Properties Values

Tool to retrieve product property values from the store.

Get Stores

Tool to retrieve a list of all warehouses/stores in the system.

Get Task

Retrieves detailed information about a specific task by its ID.

Get Tasks

Tool to retrieve a list of tasks with optional filters.

Get Tasks Comments

Tool to retrieve comments on a specific task by task ID.

Get Tasks History

Tool to retrieve task change history.

Get Telephony Setting

Tool to retrieve telephony integration settings by code.

Get User

Tool to retrieve detailed information about a specific user by ID.

Get User Groups

Tool to retrieve a list of user groups with their permissions and configuration.

Get Users

Tool to retrieve a list of users.

Update Customer Subscriptions

Tool to subscribe or unsubscribe a customer to mailing channels.

Update User Status

Tool to change a user's status.

Upload Costs

Tool to batch upload cost records to Simla CRM.

Upload Customers

Tool to batch upload customer records to Simla CRM.

Upload Corporate Customers

Tool to batch upload corporate customers to Simla.

Upload Orders

Upload multiple orders to Simla in a single batch operation.

Upload Store Prices

Tool to batch update SKU prices in Simla store catalog.

Upload Web Analytics Client IDs

Tool to batch upload web analytics client IDs to Simla CRM for tracking purposes.

Upload Web Analytics Sources

Tool to batch upload web analytics sources to Simla CRM.

FAQ

Frequently asked questions

With a standalone Simla com MCP server, the agents and LLMs can only access a fixed set of Simla com tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Simla com and many other apps based on the task at hand, all through a single MCP endpoint.

Yes, you can. Claude Code fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Simla com tools.

Yes, absolutely. You can configure which Simla com scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Simla com data and credentials are handled as safely as possible.

Start with Simla com.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Simla com tool your agent needs.Free to start.

Start building