Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OMNISEND_API_KEY | Yes | Your Omnisend API key | |
| OMNISEND_API_URL | No | The Omnisend API URL | https://api.omnisend.com/v5 |
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| ping | Simple tool to check if the MCP server is running correctly. |
| listContacts | Retrieve a list of contacts from Omnisend. Each contact can be identified by multiple identifiers (email, phone) with corresponding channels. The response includes pagination information (next/previous cursor, limit, offset). |
| createContact | Create or update a contact in Omnisend. Contact data can include identifiers (email, phone), personal information, subscription status, and custom properties. |
| getContact | Retrieve detailed information about a specific contact by their unique identifier. |
| updateContact | Update an existing contact's information. IMPORTANT: You must first get the contact using getContact and preserve the returned structure when updating. The update request requires the same structure as returned by the GET method, with only your desired changes applied. |
| listProducts | Retrieve a list of products from the Omnisend catalog with pagination support. The response includes pagination information (next/previous cursor, limit, offset). |
| createProduct | Create a new product in the Omnisend catalog. Product data can include details like title, description, variants, images, price, and more. |
| getProduct | Retrieve detailed information about a specific product by its unique identifier. |
| replaceProduct | Replace an existing product with new data. IMPORTANT: You must first get the product using getProduct and preserve the returned structure when replacing. The replace request requires the same structure as returned by the GET method, with only your desired changes applied. |
| deleteProduct | Remove a product from the Omnisend catalog by its unique identifier. |
| listCategories | Retrieve a list of product categories from the Omnisend catalog with pagination support. The response includes pagination information (next/previous cursor, limit, offset). |
| createCategory | Create a new product category in the Omnisend catalog. Category data can include title, description, image, and URL. |
| getCategory | Retrieve detailed information about a specific product category by its unique identifier. |
| updateCategory | Update an existing product category. IMPORTANT: You must first get the category using getCategory and preserve the returned structure when updating. |
| deleteCategory | Remove a product category from the Omnisend catalog by its unique identifier. |
| sendEvent | Send a customer event to Omnisend. Events are used to track customer behavior and can trigger automations. Can be custom events or predefined system events. |
| getCurrentBrand | Retrieve information about the current brand from Omnisend. This includes brand ID, website, platform, version, currency, and other brand-related details. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Contact schema | Represents a contact in Omnisend. Each contact can be identified by multiple identifiers (email, phone) with corresponding channels. |
| Product schema | Represents a product in the Omnisend catalog. |
| Product category schema | Represents a product category in Omnisend. |
| Event schema | Represents a customer event in Omnisend. |
| Brand schema | Represents brand information in Omnisend. |
| Brand information | Current brand information from Omnisend API. |