Omnisend MCP Server
A server that enables AI assistants to interact with the Omnisend marketing platform, supporting contact management, product management, and event tracking operations through natural language.
Tools
listContacts
Retrieve a list of contacts from Omnisend. Each contact can be identified by multiple identifiers (email, phone) with corresponding channels.
createContact
Create or update a contact in Omnisend. Contact data can include identifiers (email, phone), personal information, subscription status, and custom properties.
replaceProduct
Replace an existing product with new data. This completely overwrites the product information rather than updating specific fields.
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.
getContact
Retrieve detailed information about a specific contact by their unique identifier.
updateContact
Update an existing contact's information. Can modify subscription status, personal details, and custom properties.
listProducts
Retrieve a list of products from the Omnisend catalog with pagination support.
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.
deleteProduct
Remove a product from the Omnisend catalog by its unique identifier.
README
Omnisend MCP Server
A Model Context Protocol (MCP) server that integrates with Omnisend API V5.
Features
- Contact management (list, create, get, update)
- Product management (list, create, get, replace, delete)
- Event tracking
Installation
npm install
Configuration
Create a .env file in the root directory with your Omnisend API key:
OMNISEND_API_KEY=your_api_key_here
OMNISEND_API_URL=https://api.omnisend.com/v5
Usage
To start the MCP server:
npm start
Interacting with the MCP Server
The MCP server is designed to be used with clients that understand the Model Context Protocol. Here are ways to interact with it:
VS Code Integration
For use with VS Code, a configuration file is provided in .vscode/mcp.json. VS Code with the appropriate MCP extension can communicate with this server.
AI Assistants
AI assistants like Claude that support MCP can communicate with this server to access Omnisend data and perform operations.
Using with Claude Desktop
To use this MCP server with Claude Desktop:
-
Download and install Claude Desktop from the official website.
-
Make sure you have Node.js installed on your system. You can verify by running:
node --versionIf Node.js is not installed, download it from nodejs.org.
-
Open the Claude menu on your computer and select "Settings..."
-
Click on "Developer" in the left-hand bar of the Settings pane, and then click on "Edit Config"
-
This will open your Claude Desktop configuration file. Replace the file contents with or add the following configuration:
{ "mcpServers": { "omnisend": { "command": "node", "args": [ "/path/to/index.js" ], "env": { "OMNISEND_API_KEY": "your_api_key_here" } } } }Make sure to replace
your_api_key_herewith your actual Omnisend API key. -
Save the configuration file and restart Claude Desktop.
-
After restarting, you should see a hammer icon in the bottom right corner of the input box.
-
Click on the hammer icon to see the available Omnisend tools.
-
You can now ask Claude to perform operations such as:
- "List my recent contacts in Omnisend"
- "Create a new product in my Omnisend catalog"
- "Send a customer event to Omnisend"
Custom MCP Clients
You can develop custom clients using the @modelcontextprotocol/sdk library:
import { McpClient } from '@modelcontextprotocol/sdk/client/mcp';
import { ProcessClientTransport } from '@modelcontextprotocol/sdk/client/process';
const transport = new ProcessClientTransport(serverProcess);
const client = new McpClient(transport);
// Connect to the server
await client.connect();
// Execute tools
const result = await client.executeTool("listContacts", { limit: 10 });
API Documentation
For more information about the Omnisend API, see the official documentation.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。