From 6f6131538081975f3ddb1162d3e080bd45f85a79 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:21:21 +0000 Subject: [PATCH 1/3] 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 --- servers/com.hubspot-mcp.json | 64 ++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/com.hubspot-mcp.json diff --git a/servers/com.hubspot-mcp.json b/servers/com.hubspot-mcp.json new file mode 100644 index 0000000..b277acf --- /dev/null +++ b/servers/com.hubspot-mcp.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.hubspot-mcp", + "name": "HubSpot", + "alias": "hubspot", + "description": "Manage HubSpot CRM data including contacts, companies, deals, and tickets. Search records, create associations, and manage pipelines.", + "icon": "https://avatars.githubusercontent.com/u/326419?v=4", + "schema_version": "2.1", + "categories": ["productivity", "cloud"], + "tags": ["hubspot", "crm", "contacts", "deals", "marketing", "sales"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@hubspot/mcp-server"], + "env": { + "PRIVATE_APP_ACCESS_TOKEN": "${input:PRIVATE_APP_ACCESS_TOKEN}" + }, + "metadata": { + "inputs": [ + { + "id": "PRIVATE_APP_ACCESS_TOKEN", + "label": "HubSpot Private App Token", + "description": "Access token from a HubSpot private app with the necessary scopes.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "pat-na1-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", + "obtain": { + "url": "https://developers.hubspot.com/docs/api/private-apps", + "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", + "button_label": "Create Private App" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Create a HubSpot private app at Settings > Integrations > Private Apps" + }, + + "contributor": { + "name": "HubSpot", + "github": "HubSpot", + "url": "https://www.hubspot.com" + }, + + "links": { + "repository": "https://github.com/HubSpot/hubspot-mcp-server", + "homepage": "https://www.hubspot.com", + "documentation": "https://developers.hubspot.com/mcp" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 837614fa396c38edf9bdbdda69242d8e347fbd82 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:09:21 +0800 Subject: [PATCH 2/3] fix: update server definition (input type 'password' -> 'text' for PRIVATE_APP_ACCESS_TOKEN; repo URL fixed) --- servers/com.hubspot-mcp.json | 33 +++++++++++++++++++++------------ 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/servers/com.hubspot-mcp.json b/servers/com.hubspot-mcp.json index b277acf..9a8438c 100644 --- a/servers/com.hubspot-mcp.json +++ b/servers/com.hubspot-mcp.json @@ -6,13 +6,25 @@ "description": "Manage HubSpot CRM data including contacts, companies, deals, and tickets. Search records, create associations, and manage pipelines.", "icon": "https://avatars.githubusercontent.com/u/326419?v=4", "schema_version": "2.1", - "categories": ["productivity", "cloud"], - "tags": ["hubspot", "crm", "contacts", "deals", "marketing", "sales"], - + "categories": [ + "productivity", + "cloud" + ], + "tags": [ + "hubspot", + "crm", + "contacts", + "deals", + "marketing", + "sales" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "@hubspot/mcp-server"], + "args": [ + "-y", + "@hubspot/mcp-server" + ], "env": { "PRIVATE_APP_ACCESS_TOKEN": "${input:PRIVATE_APP_ACCESS_TOKEN}" }, @@ -22,7 +34,7 @@ "id": "PRIVATE_APP_ACCESS_TOKEN", "label": "HubSpot Private App Token", "description": "Access token from a HubSpot private app with the necessary scopes.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "pat-na1-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", @@ -35,26 +47,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Create a HubSpot private app at Settings > Integrations > Private Apps" }, - "contributor": { "name": "HubSpot", "github": "HubSpot", "url": "https://www.hubspot.com" }, - "links": { - "repository": "https://github.com/HubSpot/hubspot-mcp-server", + "repository": "https://github.com/HubSpot/mcp-server", "homepage": "https://www.hubspot.com", "documentation": "https://developers.hubspot.com/mcp" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 21bd43f9265890a2c7ad6fb5390689a7df83b409 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:44:40 +0800 Subject: [PATCH 3/3] 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 --- servers/{com.hubspot-mcp.json => com.hubspot-mcp-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.hubspot-mcp.json => com.hubspot-mcp-npx.json} (97%) diff --git a/servers/com.hubspot-mcp.json b/servers/com.hubspot-mcp-npx.json similarity index 97% rename from servers/com.hubspot-mcp.json rename to servers/com.hubspot-mcp-npx.json index 9a8438c..4e040a8 100644 --- a/servers/com.hubspot-mcp.json +++ b/servers/com.hubspot-mcp-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.hubspot-mcp", - "name": "HubSpot", + "id": "com.hubspot-mcp-npx", + "name": "HubSpot (npx)", "alias": "hubspot", "description": "Manage HubSpot CRM data including contacts, companies, deals, and tickets. Search records, create associations, and manage pipelines.", "icon": "https://avatars.githubusercontent.com/u/326419?v=4",