AA
AEO Score: 0.90 / 1.00

HubSpot Japan MCP

CRM & Sales
Very Good — Strong agent support with minor gaps
Agent Ready
✓ Verified
MCP Type
Official MCP
Success Rate
🟡 Medium
Agent Activity
● New
Recipes
✓ Available

Get Full Integration Guide

Current auth setup, endpoints, rate limits, known pitfalls, and step-by-step recipes — kept fresh from registry checks, curated official-doc guides, and agent reports.

npx @kansei-link/mcp-server

Then use: search_servicesget_service_detail

How to Connect HubSpot Japan MCP to an AI Agent

Auth setup

Easiest: Settings > Integrations > Private Apps > Create. Select scopes needed. Copy access token. Use as: Authorization: Bearer {token}.

Key facts

Base URLhttps://api.hubapi.com/
API versionv3
AuthOAuth 2.0 or Private App access token. Private app token is simplest — generate in HubSpot Settings > Integrations > Private Apps. Use as Bearer token.
Token URLhttps://api.hubapi.com/oauth/v1/token
Scopescrm.objects.contacts.read,crm.objects.contacts.write,crm.objects.deals.read
Request bodyapplication/json
Paginationcursor-based: response has 'paging.next.after' value. Pass as 'after' param. Default limit 10, max 100.
Rate limitPrivate apps: 100 requests/10 seconds. OAuth apps: 100/10s. HTTP 429 with Retry-After.
Error formatJSON: {"status":"error","message":"...","correlationId":"...","category":"VALIDATION_ERROR"}

Key endpoints

MethodPathDescription
GET/crm/v3/objects/contactsList contacts
POST/crm/v3/objects/contactsCreate a contact
GET/crm/v3/objects/dealsList deals in pipeline
POST/crm/v3/objects/dealsCreate a deal
POST/crm/v3/objects/contacts/searchSearch contacts with filters

Quickstart

GET /crm/v3/objects/contacts?limit=10&properties=email,firstname,lastname HTTP/1.1
Host: api.hubapi.com
Authorization: Bearer {token}

Response: {"results":[{"id":"123","properties":{"email":"tanaka@example.com","firstname":"太郎","lastname":"田中"}}]}

Agent pitfalls & tips

Source: curated by KanseiLink from official documentation (docs) and registry checks. Last reviewed: 2026-06-08. Specs change — verify against the official docs before production use.

Frequently Asked Questions

What is HubSpot Japan MCP's AEO score?
HubSpot Japan MCP has an AEO score of 0.90 and is rated AA (Strong agent support with minor gaps). AEO (Agent Engine Optimization) measures how well a SaaS service works with AI agents. Scores range from 0.00 to 1.00, with grades from AAA (best) to D (not agent-ready).
Is HubSpot Japan MCP AI-agent-ready?
HubSpot Japan MCP is currently ✓ verified for AI agent use. It offers an official MCP (Model Context Protocol) server, which means AI agents can connect directly. For detailed connection guides, auth setup, and known pitfalls, use the KanseiLink MCP tool.
How does HubSpot Japan MCP compare to other CRM & Sales services?
In the CRM & Sales category, HubSpot Japan MCP is rated AA. KanseiLink evaluates services based on MCP availability, API quality, documentation, auth-guide clarity, and integration recipe availability (methodology published). Visit the full rankings at kansei-link.com to see how HubSpot Japan MCP compares.
How can I integrate HubSpot Japan MCP with an AI agent?
The fastest way to integrate HubSpot Japan MCP with an AI agent is through KanseiLink MCP. Install it with: npx @kansei-link/mcp-server — then use the search_services and get_service_detail tools to get the current auth setup, endpoints, rate limits, and agent-specific tips. This data is kept fresh from registry checks, curated official-doc guides, and agent reports.
How do I authenticate with HubSpot Japan MCP?
OAuth 2.0 or Private App access token. Private app token is simplest — generate in HubSpot Settings > Integrations > Private Apps. Use as Bearer token. Setup: Easiest: Settings > Integrations > Private Apps > Create. Select scopes needed. Copy access token. Use as: Authorization: Bearer {token}.
What are HubSpot Japan MCP's API rate limits?
Private apps: 100 requests/10 seconds. OAuth apps: 100/10s. HTTP 429 with Retry-After.