Maton MCP server

Integrate with Maton APIs through function calling. This protocol supports various apps and actions to interact with different Maton services.
Back to servers
Setup instructions
Provider
Maton AI
Release date
Mar 20, 2025
Language
TypeScript
Stats
26 stars

Maton Model Context Protocol (MCP) server enables integration with Maton APIs through function calling. This protocol supports various applications and actions for interacting with different Maton services, providing a streamlined way to connect with platforms like HubSpot, Google Workspace, Salesforce, and many others.

Installation

You can run the Maton MCP server using npx with either the API Agent or API Action approach.

Using API Agent (Beta)

npx -y @maton/mcp hubspot --agent --api-key=YOUR_MATON_API_KEY

Using API Actions

Run with all available actions:

npx -y @maton/mcp hubspot --actions=all --api-key=YOUR_MATON_API_KEY

Or specify only the actions you need:

npx -y @maton/mcp hubspot --actions=create-contact,list-contacts --api-key=YOUR_MATON_API_KEY

Replace YOUR_MATON_API_KEY with your actual API key from the Maton Dashboard. Alternatively, you can set the MATON_API_KEY in your environment variables.

Integration with Claude Desktop

To use 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"
      ]
    }
  }
}

Again, replace YOUR_MATON_API_KEY with your actual API key or use environment variables.

Debugging the Server

For debugging purposes, you can use the MCP Inspector:

  1. First, build the server:
npm run build
  1. Start the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.js salesforce --actions=all --api-key=YOUR_MATON_API_KEY
  1. Open the MCP Inspector UI in your browser
  2. Click Connect to start the MCP server
  3. View and test the available tools

Supported Applications and Actions

The Maton MCP server supports numerous applications and actions. Here's a selection of the available integrations:

Google Workspace

  • Google Calendar: create, delete, list, and update events
  • Google Docs: create documents, append text, find documents
  • Google Drive: manage files and folders
  • Google Mail: send emails, manage drafts and labels
  • Google Sheets: create and manage spreadsheets and worksheets

CRM and Marketing

  • HubSpot: manage contacts and deals
  • Salesforce: create and manage contacts
  • Mailchimp: campaign management
  • Klaviyo: list and profile management, campaign creation

Project Management

  • Asana: manage tasks, projects, and workspaces
  • ClickUp: manage tasks, folders, lists, and workspaces
  • Jira: manage issues, comments, projects, and users

Communication

  • Slack: list channels, messages, and send messages

E-commerce

  • Shopify: manage orders
  • Stripe: manage customers and invoices

Each application offers specific actions. For example, with HubSpot you can create contacts, list contacts, search contacts, and more. With Google Calendar, you can create, delete, get, and update events.

To use a specific application, simply replace the app name in the installation command:

npx -y @maton/mcp APP_NAME --actions=all --api-key=YOUR_MATON_API_KEY

Where APP_NAME is one of the supported applications like hubspot, google-calendar, etc.

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "maton" '{"command":"npx","args":["-y","@maton/mcp@latest","hubspot","--actions=all","--api-key=YOUR_MATON_API_KEY"]}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "maton": {
            "command": "npx",
            "args": [
                "-y",
                "@maton/mcp@latest",
                "hubspot",
                "--actions=all",
                "--api-key=YOUR_MATON_API_KEY"
            ]
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "maton": {
            "command": "npx",
            "args": [
                "-y",
                "@maton/mcp@latest",
                "hubspot",
                "--actions=all",
                "--api-key=YOUR_MATON_API_KEY"
            ]
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later