BBB
AEO Score: 0.60 / 1.00

SmartHR

HR & People
Adequate — Basic agent connectivity available
Agent Ready
Connectable
MCP Type
API Only
Success Rate
🔴 Low
Agent Activity
●●● Active
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 SmartHR to an AI Agent

Auth setup

1. Register at developer.smarthr.jp/apps. 2. Set redirect_uri. 3. Use sandbox environment for testing. 4. Request production access after verification.

Key facts

Base URLhttps://api.smarthr.jp/v1/
API versionv1
AuthOAuth 2.0 Authorization Code flow. Register application at developer.smarthr.jp to obtain client_id and client_secret. Exchange authorization code for access_token via POST /oauth/token. Access tokens expire in 1 hour; use refresh_token to renew.
Token URLhttps://api.smarthr.jp/oauth/token
Scopesemployees.read,employees.write,documents.read,documents.write
Request bodyapplication/json
Paginationcursor-based: include 'cursor' param from response 'next_cursor' field. Default page size 25, max 100.
Rate limit600 requests/10 minutes per access token. HTTP 429 with Retry-After header.
Error formatJSON: {"errors":[{"code":"invalid_parameter","field":"email","message":"..."}]}

Key endpoints

MethodPathDescription
GET/employeesList all employees with pagination
POST/employeesCreate a new employee record
GET/employees/{id}Get employee details by ID
GET/documentsList social insurance and tax documents
POST/year_end_adjustmentsStart year-end adjustment (年末調整) workflow

Quickstart

GET /v1/employees HTTP/1.1
Host: api.smarthr.jp
Authorization: Bearer {access_token}
Accept: application/json

Response: {"data":[{"id":"abc123","last_name":"田中","first_name":"太郎","email":"tanaka@example.com"}],"next_cursor":"xyz789"}

Agent pitfalls & tips

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

Frequently Asked Questions

What is SmartHR's AEO score?
SmartHR has an AEO score of 0.60 and is rated BBB (Basic agent connectivity available). 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 SmartHR AI-agent-ready?
SmartHR is currently connectable for AI agent use. API access is available but no dedicated MCP server has been published yet. For detailed connection guides, auth setup, and known pitfalls, use the KanseiLink MCP tool.
How does SmartHR compare to other HR & People services?
In the HR & People category, SmartHR is rated BBB. 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 SmartHR compares.
How can I integrate SmartHR with an AI agent?
The fastest way to integrate SmartHR 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 SmartHR?
OAuth 2.0 Authorization Code flow. Register application at developer.smarthr.jp to obtain client_id and client_secret. Exchange authorization code for access_token via POST /oauth/token. Access tokens expire in 1 hour; use refresh_token to renew. Setup: 1. Register at developer.smarthr.jp/apps. 2. Set redirect_uri. 3. Use sandbox environment for testing. 4. Request production access after verification.
What are SmartHR's API rate limits?
600 requests/10 minutes per access token. HTTP 429 with Retry-After header.