Skip to content

Commit 7c414ce

Browse files
authored
feat: add HubSpot MCP server definition (#45)
* Add HubSpot MCP server definition Official HubSpot MCP server for CRM data management. Manage contacts, companies, deals, and tickets. Uses @hubspot/mcp-server npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx * fix: update server definition (input type 'password' -> 'text' for PRIVATE_APP_ACCESS_TOKEN; repo URL fixed) * fix: rename server files with transport suffix - com.hubspot-mcp.json -> com.hubspot-mcp-npx.json (id: com.hubspot-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 4274a1d commit 7c414ce

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

servers/com.hubspot-mcp-npx.json

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.hubspot-mcp-npx",
4+
"name": "HubSpot (npx)",
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": [
10+
"productivity",
11+
"cloud"
12+
],
13+
"tags": [
14+
"hubspot",
15+
"crm",
16+
"contacts",
17+
"deals",
18+
"marketing",
19+
"sales"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@hubspot/mcp-server"
27+
],
28+
"env": {
29+
"PRIVATE_APP_ACCESS_TOKEN": "${input:PRIVATE_APP_ACCESS_TOKEN}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "PRIVATE_APP_ACCESS_TOKEN",
35+
"label": "HubSpot Private App Token",
36+
"description": "Access token from a HubSpot private app with the necessary scopes.",
37+
"type": "text",
38+
"required": true,
39+
"secret": true,
40+
"placeholder": "pat-na1-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
41+
"obtain": {
42+
"url": "https://developers.hubspot.com/docs/api/private-apps",
43+
"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",
44+
"button_label": "Create Private App"
45+
}
46+
}
47+
]
48+
}
49+
},
50+
"auth": {
51+
"type": "api_key",
52+
"instructions": "Create a HubSpot private app at Settings > Integrations > Private Apps"
53+
},
54+
"contributor": {
55+
"name": "HubSpot",
56+
"github": "HubSpot",
57+
"url": "https://www.hubspot.com"
58+
},
59+
"links": {
60+
"repository": "https://github.com/HubSpot/mcp-server",
61+
"homepage": "https://www.hubspot.com",
62+
"documentation": "https://developers.hubspot.com/mcp"
63+
},
64+
"platforms": [
65+
"all"
66+
],
67+
"capabilities": {
68+
"tools": true,
69+
"resources": false,
70+
"prompts": false,
71+
"read_only_mode": false
72+
}
73+
}

0 commit comments

Comments
 (0)