Skip to main content
The Vendaze MCP (Model Context Protocol) server lets you connect AI assistants to your Vendaze account. Once connected, your assistant can search contacts, view deals, create tasks, log activities, and much more, all from within the conversation, without you having to open Vendaze.

Platforms with native integration

The Vendaze MCP is available as a listed integration in Claude and ChatGPT. On these platforms, simply search for Vendaze and connect your account, no technical setup required.

Claude

Connect via the Claude app directory.

ChatGPT

Connect via ChatGPT connectors.

Other platforms and IDEs

The Vendaze MCP can be connected in any client that supports the Model Context Protocol. Select your tool to see the setup instructions:
Run the following command in your terminal to add the Vendaze MCP server:
claude mcp add --transport http vendaze https://mcp.vendaze.com/mcp
The server will be available in all Claude Code sessions from that point on.

What your assistant can do

Once connected, your AI assistant has access to the following actions on your Vendaze account:

People

ToolDescription
list_peopleLists contacts with filter and pagination support.
get_personFetches a person by ID with custom fields and company.
create_personCreates a new contact in the workspace.
update_personUpdates fields on an existing contact.
delete_personRemoves (soft delete) a contact.

Companies

ToolDescription
list_companiesLists companies with filter and pagination support.
get_companyFetches a company by ID with custom fields.
create_companyCreates a new company in the workspace.
update_companyUpdates fields on an existing company.
delete_companyRemoves (soft delete) a company.

Deals

ToolDescription
list_dealsLists deals with pipeline, price, and date filter support.
get_dealFetches a deal by ID with pipeline, stage, and products.
create_dealCreates a new deal.
update_dealUpdates fields on an existing deal.
delete_dealRemoves (soft delete) a deal.

Tasks

ToolDescription
list_tasksLists tasks filtered by entity, priority, or status.
create_taskCreates a new task.
update_taskUpdates an existing task.
delete_taskRemoves a task.
list_task_typesLists the task types available in the workspace.
create_task_typeCreates a new task type.
update_task_typeUpdates an existing task type.
delete_task_typeRemoves a task type.

Activities

ToolDescription
list_activitiesLists activities linked to a person, company, or deal.
get_activityFetches an activity by ID.
create_activityLogs a new activity (call, meeting, email, or note).
delete_activityRemoves an activity.

Products

ToolDescription
list_productsLists the products available in the workspace.
get_productFetches a product by ID.
create_productCreates a new product.
update_productUpdates fields on an existing product.
delete_productRemoves (soft delete) a product.

Tags

ToolDescription
list_tagsLists all tags in the workspace.
get_tagFetches a tag by ID or key.
create_tagCreates a new tag.
update_tagUpdates the name or color of a tag.
delete_tagRemoves a tag from the workspace.

Lists

ToolDescription
list_listsLists contact lists in the workspace.
create_listCreates a new contact list.
update_listRenames an existing list.
delete_listRemoves a contact list.

Custom Fields

ToolDescription
list_custom_fieldsLists the custom fields available in the workspace.
create_custom_fieldCreates a new custom field.
update_custom_fieldUpdates an existing custom field.
delete_custom_fieldRemoves a custom field.

Pipelines

ToolDescription
list_pipelinesLists pipelines and their stages.
get_pipelineFetches a pipeline by ID with all its stages.
create_pipelineCreates a new pipeline with stages.
update_pipelineUpdates a pipeline or its stages.

Example prompts

Once connected, you can talk to your assistant naturally:
  • “What are the 10 highest-value deals in the Commercial pipeline?”
  • “Show me the contacts at Acme Corp with all their information.”
  • “Which tasks are open with an overdue date?”
  • “Create a contact named John Smith at company XYZ with email john@xyz.com.”
  • “Move the deal ‘Quarterly Contract’ to the ‘Proposal Sent’ stage.”
  • “Add a note on contact Ana Costa saying she returns on the 15th.”
  • “Log a call on the Acme Corp deal saying we’re waiting for their legal team’s approval.”

Notes

  • The MCP Server applies the same rate limits as the REST API.
  • The connection uses your Vendaze account’s OAuth authorization. The assistant only accesses the workspace you authorized.
  • Custom fields are returned only in ID lookup tools (get_*), not in listings.