AAA
AEO Score: 1.00 / 1.00

freee MCP

Accounting & Finance
Excellent — Best-in-class agent integration
Agent Ready
✓ Verified
MCP Type
Official MCP
Success Rate
🟢 High
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 freee MCP to an AI Agent

Auth setup

1. Register at app.secure.freee.co.jp/developers. 2. Create app, set redirect_uri. 3. Get company_id from GET /companies. 4. Most endpoints require company_id param. 5. Or just use: npx freee-mcp (handles OAuth automatically).

Key facts

Base URLhttps://api.freee.co.jp/api/1/
API versionv1
AuthOAuth 2.0 Authorization Code + PKCE. Register app at freee Developer Portal. Exchange auth code for access_token (expires 24h). Use refresh_token (expires 90 days) to renew. MCP server handles auth automatically via npx freee-mcp.
Token URLhttps://accounts.secure.freee.co.jp/public_api/token
Scopesread,write
Request bodyapplication/json
Paginationoffset: use 'offset' and 'limit' params (max 100). Response includes total_count.
Rate limit3,600 requests/hour per access token. Wallets/deals endpoints: 300/5min. HTTP 429 with rate-limit headers.
Error formatJSON: {"status_code":400,"errors":[{"type":"validation","messages":["..."]}]}

Key endpoints

MethodPathDescription
GET/companiesList accessible companies (get company_id first)
GET/dealsList deals (invoices/transactions)
POST/dealsCreate a new deal (invoice, expense, etc.)
GET/journalsList journal entries
POST/invoicesCreate and send invoice
GET/account_itemsList account items (勘定科目)

Quickstart

GET /api/1/companies HTTP/1.1
Host: api.freee.co.jp
Authorization: Bearer {access_token}
Accept: application/json

Response: {"companies":[{"id":123,"display_name":"テスト株式会社","role":"admin"}]}

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 freee MCP's AEO score?
freee MCP has an AEO score of 1.00 and is rated AAA (Best-in-class agent integration). 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 freee MCP AI-agent-ready?
freee 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 freee MCP compare to other Accounting & Finance services?
In the Accounting & Finance category, freee MCP is rated AAA. 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 freee MCP compares.
How can I integrate freee MCP with an AI agent?
The fastest way to integrate freee 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 freee MCP?
OAuth 2.0 Authorization Code + PKCE. Register app at freee Developer Portal. Exchange auth code for access_token (expires 24h). Use refresh_token (expires 90 days) to renew. MCP server handles auth automatically via npx freee-mcp. Setup: 1. Register at app.secure.freee.co.jp/developers. 2. Create app, set redirect_uri. 3. Get company_id from GET /companies. 4. Most endpoints require company_id param. 5. Or just use: npx freee-mcp (handles OAuth automatically).
What are freee MCP's API rate limits?
3,600 requests/hour per access token. Wallets/deals endpoints: 300/5min. HTTP 429 with rate-limit headers.