|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.hubspot-mcp", |
| 4 | + "name": "HubSpot", |
| 5 | + "alias": "hubspot", |
| 6 | + "description": "Manage HubSpot CRM data including contacts, companies, deals, and tickets. Search records, create associations, and manage pipelines.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/326419?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": ["productivity", "cloud"], |
| 10 | + "tags": ["hubspot", "crm", "contacts", "deals", "marketing", "sales"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "npx", |
| 15 | + "args": ["-y", "@hubspot/mcp-server"], |
| 16 | + "env": { |
| 17 | + "PRIVATE_APP_ACCESS_TOKEN": "${input:PRIVATE_APP_ACCESS_TOKEN}" |
| 18 | + }, |
| 19 | + "metadata": { |
| 20 | + "inputs": [ |
| 21 | + { |
| 22 | + "id": "PRIVATE_APP_ACCESS_TOKEN", |
| 23 | + "label": "HubSpot Private App Token", |
| 24 | + "description": "Access token from a HubSpot private app with the necessary scopes.", |
| 25 | + "type": "password", |
| 26 | + "required": true, |
| 27 | + "secret": true, |
| 28 | + "placeholder": "pat-na1-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", |
| 29 | + "obtain": { |
| 30 | + "url": "https://developers.hubspot.com/docs/api/private-apps", |
| 31 | + "instructions": "1. Go to your HubSpot account Settings\n2. Navigate to Integrations > Private Apps\n3. Click 'Create a private app'\n4. Configure scopes (CRM, contacts, etc.)\n5. Click 'Create app' and copy the access token", |
| 32 | + "button_label": "Create Private App" |
| 33 | + } |
| 34 | + } |
| 35 | + ] |
| 36 | + } |
| 37 | + }, |
| 38 | + |
| 39 | + "auth": { |
| 40 | + "type": "api_key", |
| 41 | + "instructions": "Create a HubSpot private app at Settings > Integrations > Private Apps" |
| 42 | + }, |
| 43 | + |
| 44 | + "contributor": { |
| 45 | + "name": "HubSpot", |
| 46 | + "github": "HubSpot", |
| 47 | + "url": "https://www.hubspot.com" |
| 48 | + }, |
| 49 | + |
| 50 | + "links": { |
| 51 | + "repository": "https://github.com/HubSpot/hubspot-mcp-server", |
| 52 | + "homepage": "https://www.hubspot.com", |
| 53 | + "documentation": "https://developers.hubspot.com/mcp" |
| 54 | + }, |
| 55 | + |
| 56 | + "platforms": ["all"], |
| 57 | + |
| 58 | + "capabilities": { |
| 59 | + "tools": true, |
| 60 | + "resources": false, |
| 61 | + "prompts": false, |
| 62 | + "read_only_mode": false |
| 63 | + } |
| 64 | +} |
0 commit comments