# Salesforce — MCP server on mcp.ai > Salesforce is a leading CRM platform integrating sales, service, marketing, and analytics to build customer relationships and drive business growth By: mcp.ai · official Page: https://mcp.ai/salesforce ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_salesforce?ms=1781542440000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/salesforce/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/salesforce/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/salesforce/skill.md Postman collection (v2.1): https://mcp.ai/salesforce/postman.json ## Tools - salesforce_account_creation_with_content_type_option(Id?: string, Fax?: string, Sic?: string, Name: string, Site?: string, Type?: string, Phone?: string, Jigsaw?: string, Rating?: string, SLA__c?: string, OwnerId?: string, SicDesc?: string, Website?: string, Industry?: string, ParentId?: string, PhotoUrl?: string, Active__c?: string, IsDeleted?: boolean, NaicsCode?: string, NaicsDesc?: string, Ownership?: string, DunsNumber?: string, Tradestyle?: string, BillingCity?: string, CleanStatus?: string, CreatedById?: string, CreatedDate?: string, Description?: string, YearStarted?: string, BillingState?: string, ShippingCity?: string, TickerSymbol?: string, AccountNumber?: string, AccountSource?: string, AnnualRevenue?: integer, BillingStreet?: string, ShippingState?: string, BillingCountry?: string, DandbCompanyId?: string, LastViewedDate?: string, MasterRecordId?: string, ShippingStreet?: string, SystemModstamp?: string, BillingLatitude?: integer, JigsawCompanyId?: string, ShippingCountry?: string, attributes__url?: string, BillingLongitude?: integer, LastActivityDate?: string, LastModifiedById?: string, LastModifiedDate?: string, OperatingHoursId?: string, ShippingLatitude?: integer, attributes__type?: string, BillingPostalCode?: string, NumberOfEmployees?: integer, ShippingLongitude?: integer, LastReferencedDate?: string, SLASerialNumber__c?: string, ShippingPostalCode?: string, CustomerPriority__c?: string, NumberofLocations__c?: integer, SLAExpirationDate__c?: string, UpsellOpportunity__c?: string, BillingGeocodeAccuracy?: string, ShippingGeocodeAccuracy?: string) — Deprecated: creates a new salesforce account using a json post request, requiring 'name'; specific fields (e.g., custom, dunsnumber) may have org-level prerequisites. - salesforce_add_contact_to_campaign(status?: string, contact_id: string, campaign_id: string) — Adds a contact to a campaign by creating a campaignmember record, allowing you to track campaign engagement. - salesforce_add_lead_to_campaign(status?: string, lead_id: string, campaign_id: string) — Adds a lead to a campaign by creating a campaignmember record, allowing you to track campaign engagement. - salesforce_add_opportunity_line_item(discount?: number, quantity: number, unit_price?: number, description?: string, total_price?: number, service_date?: string, opportunity_id: string, pricebook_entry_id: string) — Adds a product (line item) to an opportunity. the product must exist in a pricebook entry that's associated with the opportunity's pricebook. - salesforce_apply_lead_assignment_rules(lead_id: string) — Applies configured lead assignment rules to a specific lead, automatically routing it to the appropriate owner based on your organization's rules. - salesforce_associate_contact_to_account(account_id: string, contact_id: string) — Associates a contact with an account by updating the contact's accountid field. - salesforce_clone_opportunity_with_products(new_name?: string, close_date?: string, stage_name?: string, clone_products?: boolean, opportunity_id: string) — Clones an opportunity and optionally its products (line items). creates a new opportunity with the same field values and products as the original. - salesforce_clone_record(record_id: string, object_type: string, field_updates?: object) — Creates a copy of an existing salesforce record by reading its data, removing system fields, and creating a new record. optionally apply field updates to the clone. - salesforce_complete_task(task_id: string, completion_notes?: string) — Marks a task as completed with optional completion notes. this is a convenience action that updates the task status to 'completed'. - salesforce_create_account(fax?: string, name: string, type?: string, phone?: string, website?: string, industry?: string, sic_desc?: string, parent_id?: string, description?: string, billing_city?: string, billing_state?: string, shipping_city?: string, account_source?: string, annual_revenue?: number, billing_street?: string, shipping_state?: string, billing_country?: string, shipping_street?: string, shipping_country?: string, billing_postal_code?: string, number_of_employees?: integer, shipping_postal_code?: string) — Creates a new account in salesforce with the specified information. - salesforce_create_campaign(name: string, type?: string, status?: string, end_date?: string, is_active?: boolean, parent_id?: string, start_date?: string, actual_cost?: number, description?: string, number_sent?: number, budgeted_cost?: number, expected_revenue?: number, expected_response?: number) — Creates a new campaign in salesforce with the specified information. - salesforce_create_campaign_record_via_post(Id?: string, Name: string, Type?: string, Status?: string, EndDate?: string, OwnerId?: string, IsActive?: boolean, ParentId?: string, IsDeleted?: boolean, StartDate?: string, ActualCost?: integer, NumberSent?: integer, CreatedById?: string, CreatedDate?: string, Description?: string, BudgetedCost?: integer, NumberOfLeads?: integer, LastViewedDate?: string, SystemModstamp?: string, ExpectedRevenue?: integer, attributes__url?: string, ExpectedResponse?: integer, LastActivityDate?: string, LastModifiedById?: string, LastModifiedDate?: string, NumberOfContacts?: integer, attributes__type?: string, NumberOfResponses?: integer, LastReferencedDate?: string, NumberOfOpportunities?: integer, AmountAllOpportunities?: integer, AmountWonOpportunities?: integer, NumberOfConvertedLeads?: integer, NumberOfWonOpportunities?: integer, CampaignMemberRecordTypeId?: string) — Deprecated: creates a new campaign record in salesforce; if 'parentid' is provided, it must be a valid id of an existing campaign record, and if 'ownerid' is provided, it must be a valid id of an acti - salesforce_create_contact(email?: string, phone?: string, title?: string, birthdate?: string, last_name: string, account_id?: string, department?: string, first_name?: string, description?: string, lead_source?: string, mailing_city?: string, mobile_phone?: string, mailing_state?: string, mailing_street?: string, mailing_country?: string, mailing_postal_code?: string) — Creates a new contact in salesforce with the specified information. - salesforce_create_lead(city?: string, email?: string, phone?: string, state?: string, title?: string, rating?: string, status?: string, street?: string, company: string, country?: string, website?: string, industry?: string, last_name: string, first_name?: string, description?: string, lead_source?: string, postal_code?: string, annual_revenue?: number, number_of_employees?: integer) — Creates a new lead in salesforce with the specified information. - salesforce_create_lead_with_specified_content_type(City?: string, Email?: string, Phone?: string, State?: string, Title?: string, Jigsaw?: string, Rating?: string, Status?: string, Street?: string, Company: string, Country?: string, OwnerId?: string, Website?: string, Industry?: string, LastName: string, PhotoUrl?: string, FirstName?: string, IsDeleted?: boolean, LeadSource?: string, PostalCode?: string, Primary__c?: string, SICCode__c?: string, Salutation?: string, CleanStatus?: string, CreatedById?: string, CreatedDate?: string, Description?: string, IsConverted?: boolean, IndividualId?: string, AnnualRevenue?: integer, ConvertedDate?: string, DandbCompanyId?: string, LastViewedDate?: string, MasterRecordId?: string, SystemModstamp?: string, IsUnreadByOwner?: boolean, JigsawContactId?: string, attributes__url?: string, EmailBouncedDate?: string, IsPriorityRecord?: boolean, LastActivityDate?: string, LastModifiedById?: string, LastModifiedDate?: string, attributes__type?: string, CompanyDunsNumber?: string, NumberOfEmployees?: integer, ConvertedAccountId?: string, ConvertedContactId?: string, EmailBouncedReason?: string, LastReferencedDate?: string, ProductInterest__c?: string, CurrentGenerators__c?: string, NumberofLocations__c?: integer, ConvertedOpportunityId?: string) — Deprecated: creates a new lead in salesforce, requiring `lastname` and `company` unless person accounts are enabled and `company` is null. - salesforce_create_new_contact_with_json_header(Id?: string, Fax?: string, Name?: string, Email?: string, Phone?: string, Title?: string, Jigsaw?: string, OwnerId?: string, LastName: string, Level__c?: string, PhotoUrl?: string, AccountId?: string, Birthdate?: string, FirstName?: string, HomePhone?: string, IsDeleted?: boolean, OtherCity?: string, Department?: string, LeadSource?: string, OtherPhone?: string, OtherState?: string, Salutation?: string, CleanStatus?: string, CreatedById?: string, CreatedDate?: string, Description?: string, MailingCity?: string, MobilePhone?: string, OtherStreet?: string, ReportsToId?: string, IndividualId?: string, Languages__c?: string, MailingState?: string, OtherCountry?: string, AssistantName?: string, ContactSource?: string, MailingStreet?: string, OtherLatitude?: integer, AssistantPhone?: string, IsEmailBounced?: boolean, LastViewedDate?: string, MailingCountry?: string, MasterRecordId?: string, OtherLongitude?: integer, SystemModstamp?: string, JigsawContactId?: string, MailingLatitude?: integer, OtherPostalCode?: string, attributes__url?: string, EmailBouncedDate?: string, IsPriorityRecord?: boolean, LastActivityDate?: string, LastCUUpdateDate?: string, LastModifiedById?: string, LastModifiedDate?: string, MailingLongitude?: integer, attributes__type?: string, LastCURequestDate?: string, MailingPostalCode?: string, EmailBouncedReason?: string, LastReferencedDate?: string, OtherGeocodeAccuracy?: string, MailingGeocodeAccuracy?: string) — Deprecated: creates a new contact in salesforce; 'lastname' is required, an existing 'accountid' must be used if provided, and any custom fields (ending with ' c') must be predefined. - salesforce_create_note(body?: string, title: string, owner_id?: string, parent_id: string, is_private?: boolean) — Creates a new note attached to a salesforce record with the specified title and content. - salesforce_create_note_record_with_content_type_header(Id?: string, Body: string, Title: string, OwnerId?: string, ParentId: string, IsDeleted?: boolean, IsPrivate?: boolean, CreatedById?: string, CreatedDate?: string, SystemModstamp?: string, attributes__url?: string, LastModifiedById?: string, LastModifiedDate?: string, attributes__type?: string) — Deprecated: creates a new note record in salesforce, associated with an existing salesforce object via `parentid`, automatically including a `content-type: application/json` header. - salesforce_create_opportunity(name: string, type?: string, amount?: number, next_step?: string, account_id?: string, close_date: string, contact_id?: string, stage_name: string, description?: string, lead_source?: string, probability?: number, pricebook2_id?: string) — Creates a new opportunity in salesforce with the specified information. - salesforce_create_opportunity_record(Id?: string, Name: string, Type?: string, IsWon?: boolean, Amount?: integer, Fiscal?: string, OwnerId?: string, IsClosed?: boolean, NextStep?: string, AccountId?: string, CloseDate: string, ContactId?: string, IsDeleted?: boolean, IsPrivate?: boolean, PushCount?: integer, StageName: string, CampaignId?: string, FiscalYear?: integer, LeadSource?: string, CreatedById?: string, CreatedDate?: string, Description?: string, Probability?: integer, Pricebook2Id?: string, FiscalQuarter?: integer, HasOverdueTask?: boolean, LastViewedDate?: string, OrderNumber__c?: string, SystemModstamp?: string, ExpectedRevenue?: integer, HasOpenActivity?: boolean, attributes__url?: string, ForecastCategory?: string, LastActivityDate?: string, LastModifiedById?: string, LastModifiedDate?: string, attributes__type?: string, TrackingNumber__c?: string, LastReferencedDate?: string, MainCompetitors__c?: string, LastStageChangeDate?: string, CurrentGenerators__c?: string, ForecastCategoryName?: string, HasOpportunityLineItem?: boolean, TotalOpportunityQuantity?: integer, LastAmountChangedHistoryId?: string, DeliveryInstallationStatus__c?: string, LastCloseDateChangedHistoryId?: string) — Deprecated: creates a new opportunity record in salesforce; `name`, `stagename`, and `closedate` are mandatory, and ensure any referenced ids (e.g., `accountid`, `campaignid`) are valid and correspond - salesforce_create_task(status?: string, who_id?: string, subject: string, what_id?: string, owner_id?: string, priority?: string, description?: string, activity_date?: string, is_reminder_set?: boolean, reminder_date_time?: string) — Creates a new task in salesforce to track activities, to-dos, and follow-ups related to contacts, leads, or other records. - salesforce_delete_a_lead_object_by_its_id(id: string) — Deprecated: permanently deletes an existing lead object from salesforce using its unique id. - salesforce_delete_account(account_id: string) — Permanently deletes an account from salesforce. this action cannot be undone. - salesforce_delete_campaign(campaign_id: string) — Permanently deletes a campaign from salesforce. this action cannot be undone. - salesforce_delete_contact(contact_id: string) — Permanently deletes a contact from salesforce. this action cannot be undone. - salesforce_delete_lead(lead_id: string) — Permanently deletes a lead from salesforce. this action cannot be undone. - salesforce_delete_note(note_id: string) — Permanently deletes a note from salesforce. this action cannot be undone. - salesforce_delete_opportunity(opportunity_id: string) — Permanently deletes an opportunity from salesforce. this action cannot be undone. - salesforce_execute_soql_query(soql_query: string) — Deprecated: executes the provided soql query against salesforce; the query must begin with 'select'. - salesforce_fetch_account_by_id_with_query(id: string, fields?: string) — Deprecated: use this action to retrieve a salesforce account by its unique id, which must be a valid and existing salesforce account id; you can optionally specify a comma-delimited list of fields to - salesforce_fetch_modified_or_unmodified_sobjects(If-Modified-Since?: string, If-Unmodified-Since?: string) — Deprecated: fetches sobjects from `/sobjects` based on caller-set 'if-modified-since' (returns objects modified after a date, or 304 status if none) or 'if-unmodified-since' (returns objects if unmodi - salesforce_get_account(account_id: string) — Retrieves a specific account by id from salesforce, returning all available fields. - salesforce_get_campaign(campaign_id: string) — Retrieves a specific campaign by id from salesforce, returning all available fields. - salesforce_get_contact(contact_id: string) — Retrieves a specific contact by id from salesforce, returning all available fields. - salesforce_get_dashboard(dashboard_id: string) — Gets detailed metadata for a specific dashboard including its components, layout, and filters. - salesforce_get_lead(lead_id: string) — Retrieves a specific lead by id from salesforce, returning all available fields. - salesforce_get_note(note_id: string) — Retrieves a specific note by id from salesforce, returning all available fields. - salesforce_get_note_by_id_with_fields(id: string, fields?: string) — Deprecated: retrieves a salesforce note object by its id, optionally specifying which fields to return; the note id must exist. - salesforce_get_opportunity(opportunity_id: string) — Retrieves a specific opportunity by id from salesforce, returning all available fields. - salesforce_get_report(report_id: string) — Gets detailed metadata for a specific report including its structure, columns, filters, and groupings. - salesforce_get_report_instance(report_id: string, instance_id: string) — Gets the results of a report instance created by running a report. check status to see if report has completed. - salesforce_get_user_info(user_id?: string, include_permissions?: boolean) — Retrieves information about the current user or a specific user in salesforce. - salesforce_list_accounts(query?: string) — Lists accounts from salesforce using soql query, allowing flexible filtering, sorting, and field selection. - salesforce_list_campaigns(query?: string) — Lists campaigns from salesforce using soql query, allowing flexible filtering, sorting, and field selection. - salesforce_list_contacts(query?: string) — Lists contacts from salesforce using soql query, allowing flexible filtering, sorting, and field selection. - salesforce_list_dashboards() — Lists all dashboards available in salesforce with basic metadata including name, id, and urls. - salesforce_list_email_templates(limit?: integer, order_by?: string, folder_name?: string, search_term?: string, include_body?: boolean, template_type?: string, is_active_only?: boolean, order_direction?: string) — Lists available email templates in salesforce with filtering and search capabilities. - salesforce_list_leads(query?: string) — Lists leads from salesforce using soql query, allowing flexible filtering, sorting, and field selection. - salesforce_list_notes(query?: string) — Lists notes from salesforce using soql query, allowing flexible filtering, sorting, and field selection. - salesforce_list_opportunities(query?: string) — Lists opportunities from salesforce using soql query, allowing flexible filtering, sorting, and field selection. - salesforce_list_reports() — Lists all reports available in salesforce with basic metadata including name, id, and urls. - salesforce_log_call(who_id?: string, subject?: string, what_id?: string, comments?: string, call_date?: string, call_type?: string, call_disposition?: string, call_duration_seconds?: integer) — Logs a completed phone call as a task in salesforce with call-specific details like duration, type, and disposition. - salesforce_log_email_activity(status?: string, subject: string, html_body?: string, parent_id?: string, text_body?: string, cc_address?: string, to_address: string, bcc_address?: string, is_incoming?: boolean, from_address: string, message_date?: string, related_to_id: string, is_client_managed?: boolean, is_externally_visible?: boolean) — Creates an emailmessage record to log email activity in salesforce, associating it with related records. - salesforce_mass_transfer_ownership(record_ids: string[], object_type: string, new_owner_id: string, send_notification_email?: boolean) — Transfers ownership of multiple records to a new owner in a single operation using salesforce's composite api for better performance. - salesforce_query_contacts_by_name(limit?: integer, fields?: string, contact_name: string) — Deprecated: finds salesforce contact records by name using a case-insensitive search. - salesforce_query_report(id: string, name?: string, chart?: object[], scope?: string, sortBy?: object[], buckets?: object[], topRows?: object, currency?: string, division?: string, folderId?: string, aggregates?: string[], reportType: object, crossFilters?: object[], reportFormat: string, detailColumns?: string[], developerName?: string, groupingsDown?: object[], hasDetailRows?: boolean, reportFilters?: object[], showSubtotals?: boolean, hasRecordCount?: boolean, showGrandTotal?: boolean, groupingsAcross?: object[], standardFilters?: object[], standardDateFilter?: object, customDetailFormula?: object[], presentationOptions?: object, reportBooleanFilter?: string, customSummaryFormula?: object[], historicalSnapshotDates?: string[], userOrHierarchyFilterId?: string, allowedInCustomDetailFormula?: boolean) — Deprecated: executes a salesforce report synchronously by its `id` and `reporttype`, optionally with dynamic ad-hoc adjustments like filters or groupings, and returns its data without modifying the sa - salesforce_remove_a_specific_contact_by_id(id: string) — Deprecated: permanently deletes a specific contact from salesforce using its unique id, which must correspond to an existing record. - salesforce_remove_account_by_unique_identifier(id: string) — Deprecated: deletes an existing salesforce account using its unique id, returning an empty response on success (http 204). - salesforce_remove_campaign_object_by_id(id: string) — Deprecated: permanently deletes a specific campaign sobject in salesforce using its unique id. - salesforce_remove_from_campaign(member_id?: string, campaign_id: string, campaign_member_id?: string) — Removes a lead or contact from a campaign by deleting the campaignmember record. provide either the member id (lead/contact id) or the specific campaign member id. - salesforce_remove_note_object_by_id(id: string) — Deprecated: permanently deletes an existing salesforce note object identified by its unique id. - salesforce_remove_opportunity_by_id(id: string) — Deprecated: permanently deletes an existing salesforce opportunity by its id; if the opportunity does not exist, a 'not found' (404) error occurs. - salesforce_retrieve_account_data_and_error_responses() — Deprecated: retrieves comprehensive metadata for the salesforce account sobject, detailing its properties, recent records, and related resource urls. - salesforce_retrieve_campaign_data_with_error_handling() — Deprecated: retrieves comprehensive information and metadata for the salesforce campaign sobject, provided it is enabled and accessible in the organization, and features robust error handling. - salesforce_retrieve_contact_info_with_standard_responses() — Deprecated: retrieves comprehensive metadata (e.g., fields, data types, picklist values) for the salesforce contact sobject; this action does not retrieve individual contact records. - salesforce_retrieve_lead_by_id(id: string, fields?: string) — Deprecated: retrieves details for a salesforce lead by its id; the specified lead id must exist in salesforce. - salesforce_retrieve_lead_data_with_various_responses() — Deprecated: retrieves lead sobject data from salesforce, such as recently viewed leads or general lead object information. - salesforce_retrieve_note_object_information() — Deprecated: retrieves comprehensive metadata for the salesforce 'note' sobject, if it is enabled and accessible, to understand its structure and capabilities. - salesforce_retrieve_opportunities_data() — Deprecated: retrieves all available opportunity records, representing potential revenue-generating deals, from salesforce. - salesforce_retrieve_opportunity_by_id_with_optional_fields(id: string, fields?: string) — Deprecated: retrieves a salesforce opportunity by its id; the opportunity id must exist. - salesforce_retrieve_specific_campaign_object_details(id: string, fields?: string) — Deprecated: retrieves details for a specific salesforce campaign object by its id, optionally limiting to specified fields; the campaign object must exist. - salesforce_retrieve_specific_contact_by_id(id: string, fields?: string) — Deprecated: retrieves a salesforce contact by its unique id; the id must correspond to an existing contact record in salesforce. - salesforce_run_report(report_id: string) — Runs a report and returns the results. creates a report instance that can be checked for completion. - salesforce_run_soql_query(query: string) — Executes a soql query against salesforce data. returns records matching the query with pagination support. - salesforce_search_accounts(name?: string, type?: string, limit?: integer, phone?: string, fields?: string, website?: string, industry?: string, billing_city?: string, billing_state?: string, billing_country?: string) — Search for salesforce accounts using multiple criteria like name, industry, type, location, or contact information. - salesforce_search_campaigns(name?: string, type?: string, limit?: integer, fields?: string, status?: string, is_active?: boolean, start_date_to?: string, start_date_from?: string) — Search for salesforce campaigns using multiple criteria like name, type, status, date range, or active status. - salesforce_search_contacts(name?: string, email?: string, limit?: integer, phone?: string, title?: string, fields?: string, account_name?: string) — Search for salesforce contacts using multiple criteria like name, email, phone, account, or title. - salesforce_search_leads(name?: string, email?: string, limit?: integer, phone?: string, title?: string, fields?: string, status?: string, company?: string, lead_source?: string) — Search for salesforce leads using multiple criteria like name, email, phone, company, title, status, or lead source. - salesforce_search_notes(body?: string, limit?: integer, title?: string, fields?: string, is_private?: boolean, owner_name?: string, parent_name?: string, created_date_to?: string, created_date_from?: string) — Search for salesforce notes using multiple criteria like title, body content, parent record, owner, or creation date. - salesforce_search_opportunities(name?: string, limit?: integer, fields?: string, is_won?: boolean, is_closed?: boolean, amount_max?: number, amount_min?: number, stage_name?: string, lead_source?: string, account_name?: string, close_date_to?: string, close_date_from?: string) — Search for salesforce opportunities using multiple criteria like name, account, stage, amount, close date, or status. - salesforce_search_tasks(limit?: integer, fields?: string, status?: string, subject?: string, priority?: string, is_closed?: boolean, account_name?: string, contact_name?: string, activity_date_to?: string, assigned_to_name?: string, activity_date_from?: string) — Search for salesforce tasks using multiple criteria like subject, status, priority, assigned user, related records, or dates. - salesforce_send_email(body: string, is_html?: boolean, subject: string, log_email?: boolean, sender_type?: string, cc_addresses?: string, recipient_id?: string, to_addresses: string, bcc_addresses?: string, attachment_ids?: string, sender_address?: string, related_record_id?: string) — Sends an email through salesforce with options for recipients, attachments, and activity logging. - salesforce_send_email_from_template(log_email?: boolean, sender_type?: string, template_id: string, cc_addresses?: string, recipient_id: string, bcc_addresses?: string, attachment_ids?: string, sender_address?: string, related_record_id?: string, add_threading_tokens?: boolean, additional_to_addresses?: string) — Sends an email using a predefined salesforce email template with merge field support. - salesforce_send_mass_email(body?: string, is_html?: boolean, subject?: string, batch_size?: integer, log_emails?: boolean, sender_type?: string, template_id?: string, recipient_ids: string[], sender_address?: string) — Sends bulk emails to multiple recipients, either using a template or custom content. processes in batches for better performance. - salesforce_update_account(fax?: string, name?: string, type?: string, phone?: string, website?: string, industry?: string, sic_desc?: string, parent_id?: string, account_id: string, description?: string, billing_city?: string, billing_state?: string, shipping_city?: string, account_source?: string, annual_revenue?: number, billing_street?: string, shipping_state?: string, billing_country?: string, shipping_street?: string, shipping_country?: string, billing_postal_code?: string, number_of_employees?: integer, shipping_postal_code?: string) — Updates an existing account in salesforce with the specified changes. only provided fields will be updated. - salesforce_update_account_object_by_id(Id?: string, id: string, Fax?: string, Sic?: string, Name?: string, Site?: string, Type?: string, Phone?: string, Jigsaw?: string, Rating?: string, SLA__c?: string, OwnerId?: string, SicDesc?: string, Website?: string, Industry?: string, ParentId?: string, PhotoUrl?: string, Active__c?: string, IsDeleted?: boolean, NaicsCode?: string, NaicsDesc?: string, Ownership?: string, DunsNumber?: string, Tradestyle?: string, BillingCity?: string, CleanStatus?: string, CreatedById?: string, CreatedDate?: string, Description?: string, YearStarted?: string, BillingState?: string, ShippingCity?: string, TickerSymbol?: string, AccountNumber?: string, AccountSource?: string, AnnualRevenue?: integer, BillingStreet?: string, ShippingState?: string, BillingCountry?: string, DandbCompanyId?: string, LastViewedDate?: string, MasterRecordId?: string, ShippingStreet?: string, SystemModstamp?: string, BillingLatitude?: integer, JigsawCompanyId?: string, ShippingCountry?: string, attributes__url?: string, BillingLongitude?: integer, LastActivityDate?: string, LastModifiedById?: string, LastModifiedDate?: string, OperatingHoursId?: string, ShippingLatitude?: integer, attributes__type?: string, BillingPostalCode?: string, NumberOfEmployees?: integer, ShippingLongitude?: integer, LastReferencedDate?: string, SLASerialNumber__c?: string, ShippingPostalCode?: string, CustomerPriority__c?: string, NumberofLocations__c?: integer, SLAExpirationDate__c?: string, UpsellOpportunity__c?: string, BillingGeocodeAccuracy?: string, ShippingGeocodeAccuracy?: string) — Deprecated: updates specified fields of an existing salesforce account object identified by its unique id; field names are case-sensitive and read-only fields are ignored. - salesforce_update_campaign(name?: string, type?: string, status?: string, end_date?: string, is_active?: boolean, parent_id?: string, start_date?: string, actual_cost?: number, campaign_id: string, description?: string, number_sent?: number, budgeted_cost?: number, expected_revenue?: number, expected_response?: number) — Updates an existing campaign in salesforce with the specified changes. only provided fields will be updated. - salesforce_update_campaign_by_id_with_json(Id?: string, id: string, Name?: string, Type?: string, Status?: string, EndDate?: string, OwnerId?: string, IsActive?: boolean, ParentId?: string, IsDeleted?: boolean, StartDate?: string, ActualCost?: integer, NumberSent?: integer, CreatedById?: string, CreatedDate?: string, Description?: string, BudgetedCost?: integer, NumberOfLeads?: integer, LastViewedDate?: string, SystemModstamp?: string, ExpectedRevenue?: integer, attributes__url?: string, ExpectedResponse?: integer, LastActivityDate?: string, LastModifiedById?: string, LastModifiedDate?: string, NumberOfContacts?: integer, attributes__type?: string, NumberOfResponses?: integer, LastReferencedDate?: string, NumberOfOpportunities?: integer, AmountAllOpportunities?: integer, AmountWonOpportunities?: integer, NumberOfConvertedLeads?: integer, NumberOfWonOpportunities?: integer, CampaignMemberRecordTypeId?: string) — Deprecated: updates specific fields of an existing campaign in salesforce, identified by its unique `id`, which must already exist. - salesforce_update_contact(email?: string, phone?: string, title?: string, birthdate?: string, last_name?: string, account_id?: string, contact_id: string, department?: string, first_name?: string, description?: string, mailing_city?: string, mobile_phone?: string, mailing_state?: string, mailing_street?: string, mailing_country?: string, mailing_postal_code?: string) — Updates an existing contact in salesforce with the specified changes. only provided fields will be updated. - salesforce_update_contact_by_id(Id?: string, id: string, Fax?: string, Name?: string, Email?: string, Phone?: string, Title?: string, Jigsaw?: string, OwnerId?: string, LastName?: string, Level__c?: string, PhotoUrl?: string, AccountId?: string, Birthdate?: string, FirstName?: string, HomePhone?: string, IsDeleted?: boolean, OtherCity?: string, Department?: string, LeadSource?: string, OtherPhone?: string, OtherState?: string, Salutation?: string, CleanStatus?: string, CreatedById?: string, CreatedDate?: string, Description?: string, MailingCity?: string, MobilePhone?: string, OtherStreet?: string, ReportsToId?: string, IndividualId?: string, Languages__c?: string, MailingState?: string, OtherCountry?: string, AssistantName?: string, ContactSource?: string, MailingStreet?: string, OtherLatitude?: integer, AssistantPhone?: string, IsEmailBounced?: boolean, LastViewedDate?: string, MailingCountry?: string, MasterRecordId?: string, OtherLongitude?: integer, SystemModstamp?: string, JigsawContactId?: string, MailingLatitude?: integer, OtherPostalCode?: string, attributes__url?: string, EmailBouncedDate?: string, IsPriorityRecord?: boolean, LastActivityDate?: string, LastCUUpdateDate?: string, LastModifiedById?: string, LastModifiedDate?: string, MailingLongitude?: integer, attributes__type?: string, LastCURequestDate?: string, MailingPostalCode?: string, EmailBouncedReason?: string, LastReferencedDate?: string, OtherGeocodeAccuracy?: string, MailingGeocodeAccuracy?: string) — Deprecated: updates specified fields of an existing salesforce contact by its id; at least one field must be provided for modification. - salesforce_update_lead(city?: string, email?: string, phone?: string, state?: string, title?: string, rating?: string, status?: string, street?: string, company?: string, country?: string, lead_id: string, website?: string, industry?: string, last_name?: string, first_name?: string, description?: string, lead_source?: string, postal_code?: string, annual_revenue?: number, number_of_employees?: integer) — Updates an existing lead in salesforce with the specified changes. only provided fields will be updated. - salesforce_update_lead_by_id_with_json_payload(Id?: string, id: string, Fax?: string, City?: string, Name?: string, Email?: string, Phone?: string, State?: string, Title?: string, Jigsaw?: string, Rating?: string, Status?: string, Street?: string, Company?: string, Country?: string, OwnerId?: string, Website?: string, Industry?: string, LastName?: string, Latitude?: number, PhotoUrl?: string, FirstName?: string, IsDeleted?: boolean, Longitude?: number, LeadSource?: string, PostalCode?: string, Primary__c?: string, SICCode__c?: string, Salutation?: string, CleanStatus?: string, CreatedById?: string, CreatedDate?: string, Description?: string, IsConverted?: boolean, MobilePhone?: string, IndividualId?: string, AnnualRevenue?: number, ConvertedDate?: string, DandbCompanyId?: string, LastViewedDate?: string, MasterRecordId?: string, SystemModstamp?: string, GeocodeAccuracy?: string, IsUnreadByOwner?: boolean, JigsawContactId?: string, attributes__url?: string, EmailBouncedDate?: string, IsPriorityRecord?: boolean, LastActivityDate?: string, LastModifiedById?: string, LastModifiedDate?: string, attributes__type?: string, CompanyDunsNumber?: string, NumberOfEmployees?: integer, ConvertedAccountId?: string, ConvertedContactId?: string, EmailBouncedReason?: string, LastReferencedDate?: string, ProductInterest__c?: string, CurrentGenerators__c?: string, NumberofLocations__c?: integer, ConvertedOpportunityId?: string) — Deprecated: updates specified fields of an existing lead in salesforce via its unique id (path parameter), returning http 204 on success or error details on failure; request body must contain at least - salesforce_update_note(body?: string, title?: string, note_id: string, owner_id?: string, is_private?: boolean) — Updates an existing note in salesforce with the specified changes. only provided fields will be updated. - salesforce_update_opportunity(name?: string, type?: string, amount?: number, next_step?: string, account_id?: string, close_date?: string, contact_id?: string, stage_name?: string, description?: string, lead_source?: string, probability?: number, opportunity_id: string) — Updates an existing opportunity in salesforce with the specified changes. only provided fields will be updated. - salesforce_update_opportunity_by_id(Id?: string, id: string, Name?: string, Type?: string, IsWon?: boolean, Amount?: integer, Fiscal?: string, OwnerId?: string, IsClosed?: boolean, NextStep?: string, AccountId?: string, CloseDate?: string, ContactId?: string, IsDeleted?: boolean, IsPrivate?: boolean, PushCount?: integer, StageName?: string, CampaignId?: string, FiscalYear?: integer, LeadSource?: string, CreatedById?: string, CreatedDate?: string, Description?: string, Probability?: integer, Pricebook2Id?: string, FiscalQuarter?: integer, HasOverdueTask?: boolean, LastViewedDate?: string, OrderNumber__c?: string, SystemModstamp?: string, ExpectedRevenue?: integer, HasOpenActivity?: boolean, attributes__url?: string, ForecastCategory?: string, LastActivityDate?: string, LastModifiedById?: string, LastModifiedDate?: string, attributes__type?: string, TrackingNumber__c?: string, LastReferencedDate?: string, MainCompetitors__c?: string, LastStageChangeDate?: string, CurrentGenerators__c?: string, ForecastCategoryName?: string, HasOpportunityLineItem?: boolean, TotalOpportunityQuantity?: integer, LastAmountChangedHistoryId?: string, DeliveryInstallationStatus__c?: string, LastCloseDateChangedHistoryId?: string) — Deprecated: updates specified fields of an existing salesforce opportunity by its id; the opportunity must exist, and some fields (like name, stagename, closedate) may have specific salesforce validat - salesforce_update_specific_note_by_id(Id?: string, id: string, Body?: string, Title?: string, OwnerId?: string, ParentId?: string, IsDeleted?: boolean, IsPrivate?: boolean, CreatedById?: string, CreatedDate?: string, SystemModstamp?: string, attributes__url?: string, LastModifiedById?: string, LastModifiedDate?: string, attributes__type?: string) — Deprecated: use `update specific note by id` instead. updates specified fields of an existing salesforce note sobject identified by its id; the note must already exist. - salesforce_update_task(status?: string, who_id?: string, subject?: string, task_id: string, what_id?: string, priority?: string, description?: string, activity_date?: string, is_reminder_set?: boolean, reminder_date_time?: string) — Updates an existing task in salesforce with new information. only provided fields will be updated. ## Links Docs: https://mcp.ai/docs/mcps/salesforce Website: https://mcp.ai/mcps/salesforce