{
  "info": {
    "name": "Salesmate — mcp.ai",
    "description": "REST API for the Salesmate MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/salesmate",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "salesmate_add_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "product"
          ]
        },
        "description": "Tool to add a new product. Use when you need to create a new product in Salesmate before referencing it (e.g., in deals or orders). Example: \"Add a product named 'Widget Pro' (SKU WPRO1) priced at 199",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sku\": \"\",\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"owner\": 0,\n  \"currency\": \"\",\n  \"isActive\": false,\n  \"unitPrice\": 0,\n  \"directCost\": 0,\n  \"costPerUnit\": 0,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesmate_create_company",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/company",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "company"
          ]
        },
        "description": "Tool to create a new company in the Salesmate CRM. Use when you need to register a new organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"owner\": 0,\n  \"phone\": \"\",\n  \"skypeId\": \"\",\n  \"website\": \"\",\n  \"currency\": \"\",\n  \"otherPhone\": \"\",\n  \"billingCity\": \"\",\n  \"description\": \"\",\n  \"billingState\": \"\",\n  \"twitterHandle\": \"\",\n  \"billingCountry\": \"\",\n  \"billingZipCode\": \"\",\n  \"facebookHandle\": \"\",\n  \"linkedInHandle\": \"\",\n  \"googlePlusHandle\": \"\",\n  \"billingAddressLine1\": \"\",\n  \"billingAddressLine2\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesmate_delete_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "product"
          ]
        },
        "description": "Tool to delete a product by ProductId. Use when you need to remove a product from the catalog after confirming the correct ProductId.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"product_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesmate_get_active_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/active/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "active",
            "users"
          ]
        },
        "description": "Tool to retrieve all active users. Use when you need to fetch only users currently marked active for tasks, assignments, or user management audits.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesmate_get_company",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/company",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "company"
          ]
        },
        "description": "Tool to retrieve details of a specific company by ID. Use when you have a company ID and need its full record. Example: \"Get company 42\".",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"company_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesmate_list_modules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/modules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "modules"
          ]
        },
        "description": "Tool to list all available Salesmate modules. Returns the core CRM modules including Contacts, Companies, Deals, Activities, Products, and Tickets. Use this to discover which modules are available for",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}