Skip to main content
Glama

Maton MCP Server

Протокол контекста модели Maton

Сервер Maton Model Context Protocol позволяет интегрироваться с API Maton через вызов функций. Этот протокол поддерживает различные приложения и действия для взаимодействия с различными службами Maton.

Вы можете получить свой ключ API в панели управления Maton и ознакомиться с документацией .

Настраивать

Чтобы запустить сервер Maton MCP с помощью npx, используйте следующую команду:

API-агент (бета)

# To use API agent npx -y @maton/mcp hubspot --agent --api-key=YOUR_MATON_API_KEY

Действие API

# To set up all available API actions npx -y @maton/mcp hubspot --actions=all --api-key=YOUR_MATON_API_KEY # To set up all available API actions npx -y @maton/mcp hubspot --actions=create-contact,list-contacts --api-key=YOUR_MATON_API_KEY

Обязательно замените YOUR_MATON_API_KEY на ваш фактический ключ API Maton. В качестве альтернативы вы можете установить MATON_API_KEY в переменных среды. Вы можете получить свой ключ API в панели инструментов Maton .

Использование с Claude Desktop

Добавьте следующее в ваш claude_desktop_config.json . Подробнее см. здесь .

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

Обязательно замените YOUR_MATON_API_KEY на ваш фактический ключ API Maton. В качестве альтернативы вы можете установить MATON_API_KEY в переменных env . Вы можете получить свой ключ API в панели инструментов Maton .

Отладка сервера

Для отладки сервера вы можете использовать MCP Inspector .

Сначала постройте сервер

npm run build

Выполните следующую команду в терминале:

# Start MCP Inspector and server with all tools npx @modelcontextprotocol/inspector node dist/index.js salesforce --actions=all --api-key=YOUR_MATON_API_KEY

Инструкции

  1. Замените YOUR_MATON_API_KEY на ваш фактический секретный ключ API Maton.
  2. Выполните команду для запуска MCP Inspector.
  3. Откройте пользовательский интерфейс MCP Inspector в браузере и нажмите «Подключиться», чтобы запустить сервер MCP.
  4. Вы можете просмотреть список выбранных вами инструментов и протестировать каждый инструмент по отдельности.

Доступные действия API

ПриложениеДействие
airtablelist-bases
airtablelist-records
airtablelist-tables
asanacreate-task
asanaget-task
asanalist-projects
asanalist-tasks
asanalist-workspaces
awsget-s3-object
awslist-s3-buckets
awslist-s3-objects
calendlyget-event
calendlylist-event-invitees
calendlylist-event-types
calendlylist-events
clickupcreate-task
clickupdelete-task
clickupget-task
clickuplist-folders
clickuplist-lists
clickuplist-spaces
clickuplist-tasks
clickuplist-workspaces
google-calendarcreate-event
google-calendardelete-event
google-calendarget-calendar
google-calendarget-event
google-calendarlist-calendars
google-calendarlist-events
google-calendarupdate-event
google-docsappend-text
google-docscreate-document
google-docsfind-document
google-docsget-document
google-drivecreate-file
google-drivecreate-folder
google-drivedelete-file
google-drivefind-file
google-drivefind-folder
google-driveget-file
google-drivelist-files
google-mailadd-label-to-email
google-mailcreate-draft
google-mailfind-email
google-maillist-labels
google-mailsend-email
google-mailremove-label-from-email
google-sheetadd-column
google-sheetadd-multiple-rows
google-sheetclear-cell
google-sheetclear-rows
google-sheetcreate-spreadsheet
google-sheetcreate-worksheet
google-sheetdelete-rows
google-sheetdelete-worksheet
google-sheetfind-row
google-sheetget-cell
google-sheetget-spreadsheet
google-sheetget-values-in-range
google-sheetlist-worksheets
google-sheetupdate-cell
google-sheetupdate-multiple-rows
google-sheetupdate-row
hubspotcreate-contact
hubspotget-contact
hubspotlist-contacts
hubspotsearch-contacts
hubspotmerge-contacts
hubspotupdate-contact
hubspotdelete-contact
hubspotcreate-deal
hubspotget-deal
hubspotlist-deals
hubspotsearch-deals
hubspotmerge-deals
hubspotupdate-deal
hubspotdelete-deal
jiralist-clouds
jiraget-issue
jiralist-issues
jiraadd-comment-to-issue
jiralist-comments
jiraupdate-comment
jiralist-projects
jiraget-user
jiralist-users
jotformlist-forms
jotformlist-submissions
klaviyoadd-profiles-to-list
klaviyoassign-template-to-campaign-message
klaviyocreate-campaign
klaviyocreate-list
klaviyocreate-profile
klaviyocreate-template
klaviyoget-campaign-messages
klaviyoget-campaign-send-job
klaviyoget-campaigns
klaviyoget-lists
klaviyoget-profiles-for-list
klaviyoget-profiles
klaviyoget-templates
klaviyosend-campaign
mailchimpget-campaign
mailchimpsearch-campaign
notioncreate-page
notionfind-page
notionget-page
outlookcreate-draft
outlookfind-email
outlooksend-email
pipedrivesearch-people
salesforcecreate-contact
salesforceget-contact
salesforcelist-contacts
shopifycreate-order
shopifyget-order
shopifylist-orders
slacklist-channels
slacklist-messages
slacklist-replies
slacksend-message
stripecreate-customer
stripecreate-invoice-item
stripecreate-invoice
stripedelete-customer
stripeget-customer
stripeget-invoice
stripelist-customers
stripelist-invoices
typeformget-form
typeformlist-forms
typeformlist-responses
youtubelist-videos
youtubesearch-videos
-
security - not tested
A
license - permissive license
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Поговорите со своими SaaS-инструментами, включая HubSpot, Salesforce и другие

  1. Настраивать
    1. API-агент (бета)
    2. Действие API
    3. Использование с Claude Desktop
  2. Отладка сервера
    1. Инструкции
  3. Доступные действия API

    Related MCP Servers

    • A
      security
      A
      license
      A
      quality
      Enables AI models to interact with HubSpot CRM data and operations through a standardized interface, supporting contact and company management.
      Last updated -
      102
      MIT License
      • Linux
    • A
      security
      A
      license
      A
      quality
      Enables AI models to interact with HubSpot CRM data and operations through a standardized interface while providing a centralized shared space for teams to share conversation summaries in real time.
      Last updated -
      8
      MIT License
      • Linux
      • Apple
    • -
      security
      A
      license
      -
      quality
      Enables Claude to interact with HubSpot CRM for sales analysis and insights, providing tools for managing contacts, deals, companies, and retrieving sales analytics data.
      Last updated -
      2
      9
      MIT License
    • -
      security
      A
      license
      -
      quality
      A server implementation that enables AI assistants to interact with HubSpot CRM data, allowing for seamless creation and management of contacts and companies, retrieval of activity history, and access to engagement data through natural language commands.
      Last updated -
      9
      MIT License

    View all related MCP servers

    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/maton-ai/agent-toolkit'

    If you have feedback or need assistance with the MCP directory API, please join our Discord server