List all Airtable bases
List records from an Airtable table
List tables in an Airtable base
Create a new task in Asana
Get details of an Asana task
List projects in Asana
List tasks in Asana
List workspaces in Asana
Get an object from AWS S3
List AWS S3 buckets
List objects in an AWS S3 bucket
Get details of a Calendly event
List invitees for a Calendly event
List Calendly event types
List Calendly events
Create a new task in ClickUp
Delete a task in ClickUp
Get details of a ClickUp task
List folders in ClickUp
List lists in ClickUp
List spaces in ClickUp
List tasks in ClickUp
List workspaces in ClickUp
Create a new event in Google Calendar
Delete an event from Google Calendar
Get details of a Google Calendar
Get details of a Google Calendar event
List Google Calendars
List events in Google Calendar
Update an event in Google Calendar
Create a new contact in HubSpot
Get details of a HubSpot contact
List contacts in HubSpot
Search for contacts in HubSpot
Merge multiple HubSpot contacts
Update a contact in HubSpot
Delete a contact from HubSpot
Create a new deal in HubSpot
Get details of a HubSpot deal
List deals in HubSpot
Search for deals in HubSpot
Merge multiple HubSpot deals
Update a deal in HubSpot
Delete a deal from HubSpot
Create a new contact in Salesforce
Get details of a Salesforce contact
List contacts in Salesforce
List channels in Slack
List messages in a Slack channel
List replies to a Slack message
Send a message in Slack
Maton API Integration provides a Model Context Protocol server that enables seamless interaction with multiple SaaS platforms through a unified API. It supports over 50 different services including HubSpot, Google Workspace, Salesforce, Slack, and many others, allowing AI assistants to perform actions like creating contacts, sending emails, managing documents, and more without requiring separate authentication for each platform.
Maton API Integration provides a Model Context Protocol (MCP) server that allows AI assistants to interact with numerous SaaS platforms through a unified API. This integration eliminates the need to set up and authenticate with each service individually, making it easy to perform actions across multiple platforms.
Before using the Maton API Integration, you'll need:
You can run the Maton MCP server directly using npx without installing it permanently:
npx -y @maton/mcp hubspot --actions=all --api-key=YOUR_MATON_API_KEY
Replace YOUR_MATON_API_KEY
with your actual Maton API key. Alternatively, you can set the MATON_API_KEY
environment variable.
The Maton MCP server offers two main modes of operation:
npx -y @maton/mcp hubspot --agent --api-key=YOUR_MATON_API_KEY
This mode provides an agent-based interface for interacting with the specified service (HubSpot in this example).
# To set up all available API actions for a service
npx -y @maton/mcp hubspot --actions=all --api-key=YOUR_MATON_API_KEY
# To set up specific API actions
npx -y @maton/mcp hubspot --actions=create-contact,list-contacts --api-key=YOUR_MATON_API_KEY
This mode allows you to specify which actions you want to make available for the selected service.
To use Maton API Integration with Claude Desktop, add the following to your claude_desktop_config.json
:
{
"mcpServers": {
"maton": {
"command": "npx",
"args": [
"-y",
"@maton/mcp@latest",
"hubspot",
"--actions=all",
"--api-key=YOUR_MATON_API_KEY"
]
}
}
}
Replace YOUR_MATON_API_KEY
with your actual Maton API key or use environment variables.
To debug the server, you can use the MCP Inspector:
Build the server:
npm run build
Start the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.js salesforce --actions=all --api-key=YOUR_MATON_API_KEY
Open the MCP Inspector UI in your browser and click Connect to start the MCP server.
You can see the list of tools you selected and test each tool individually.
Maton API Integration supports a wide range of platforms including but not limited to:
Each platform has specific actions available, such as creating contacts, listing events, sending messages, etc.