connectif-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@connectif-mcpFind the contact with email person@example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
connectif-mcp
connectif-mcp is a minimal Model Context Protocol server that exposes the official Connectif HTTP API to MCP clients over stdio. It is a thin wrapper: requests use Connectif's official routes and parameter names, and upstream responses are returned without business transformations.
Quick start
Create a Connectif API key with the scopes required by the operations you use.
Add this server to your MCP client's standard
mcpServersconfiguration:
{
"mcpServers": {
"connectif": {
"command": "npx",
"args": ["-y", "connectif-mcp"],
"env": {
"CONNECTIF_API_KEY": "key-id:key-secret"
}
}
}
}Restart the MCP client. It will download and run
connectif-mcp@0.1.0when needed.
Keep credentials in the client's environment configuration or another secret store. Never commit a real API key.
Related MCP server: @hyperstar/mcp
Requirements
Node.js 20 or newer
A Connectif API key with the scopes required by the operations you use
An MCP client that supports stdio servers
Installation
Install the package directly when you want it in a project:
npm install connectif-mcp
pnpm add connectif-mcpFor MCP clients that support a command and arguments, the npx configuration above is the simplest setup. You can also run the installed executable with connectif-mcp.
Configuration
npm install
npm run build
CONNECTIF_API_KEY='key-id:key-secret' npm startThe server reads these environment variables:
Variable | Required | Default | Description |
| Yes | None | Sent as |
| No |
| API origin; useful for mocked or compatible environments. |
| No |
| Request abort timeout in milliseconds. |
Tools and actions
The server registers exactly 12 domain tools and 45 non-deprecated Connectif operations. Each tool takes an action property that selects the official operation; route parameters, query parameters, JSON bodies, and multipart fields remain in their corresponding locations.
Tool | API area |
| Contacts |
| Purchases |
| Products |
| Exports |
| Imports |
| Coupon sets |
| Workflows |
| Store |
| Contact fields |
| Custom events |
| Custom integrations |
| Custom event types |
Example:
{
"action": "getContactByEmail",
"email": "person@example.com"
}For imports, the file tool value contains a filename and base64 content, and the server converts it to the official multipart file part. See ENDPOINTS.md for the complete operation catalog and docs/API_REFERENCE.md for Connectif API behavior.
Security and fidelity
API keys are read from the environment and are not logged or included in tool arguments by the server.
Paths are encoded, fixed routes are selected from the operation registry, and arbitrary route overrides are not accepted.
Successful results preserve the upstream HTTP status, headers, and body. HTTP errors preserve the same upstream metadata in an MCP error result.
The wrapper does not add retries, rate-limit handling, response projection, business middleware, or other policy beyond the request timeout.
Never put API keys in source control, URLs, tool arguments, or logs. Use
.env.exampleas a variable reference only.
Development
npm run format:check
npm run typecheck
npm test
npm run build
pnpm pack --dry-runTests use mocked HTTP and do not require credentials or network access.
License
MIT. See LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceActs as a stdio-to-HTTP proxy for the 1C runtime-MCP service, enabling MCP clients like Claude Desktop to interact with 1C tools.MIT

@hyperstar/mcpofficial
Alicense-qualityBmaintenanceLocal stdio MCP server for Hyperstar headless workflows, providing tools for creator search, campaign management, bulk email, and inbox operations.39Inno Setup- Flicense-qualityBmaintenanceModel Context Protocol server for MCPGRAM that enables MCP clients to interact with connectors like GitHub, Slack, and Notion through stdio or Streamable HTTP transports.
- Alicense-qualityCmaintenanceAn MCP server that exposes HubSpot CRM operations as tools over stdio, enabling any MCP client to query and modify HubSpot data.168MIT
Related MCP Connectors
The official MCP Server from Mia-Platform to interact with Mia-Platform Console
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
A basic MCP server to operate on the Postman API.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Yoryoboy/connectif-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server