mcp-jp

mcp-jp

Japanese SMB SaaS connectors for MCP. Includes an L-Step (LINE marketing automation) server exposing 19 tools for friends, tags, and messaging.

Category
Visit Server

README

mcp-jp — Japanese SMB SaaS connectors

日本の SMB 向け SaaS に対応した MCP サーバー集

Claude などの AI エージェントから、日本のクラウドサービスを自然言語で操作できるようにします。 公式 MCP が存在しないサービスへのコネクタを独自実装しています。

このリポジトリの狙いと収益化の考え方は 戦略メモ を参照。


コネクタ一覧

日本SMB向け(独自実装)

コネクタ サービス カテゴリ
lstep/ Lステップ LINE マーケティング
kingtime/ KING OF TIME 勤怠管理
smarthr/ SmartHR 人事・労務
kaonavi/ カオナビ タレントマネジメント
mazrica/ Mazrica Sales SFA
invox/ invox 受取請求書
smaregi/ スマレジ POS・店舗管理
garoon/ Garoon グループウェア
jobcan-workflow/ ジョブカン経費精算/ワークフロー 経費・ワークフロー
base-ec/ BASE EC
esa/ esa チームナレッジ
cloudsign/ クラウドサイン 電子契約
herp/ HERP Hire 採用管理
talentio/ Talentio 採用管理
lineworks/ LINE WORKS ビジネスチャット
board/ board 経営・請求書管理
jooto/ Jooto タスク・プロジェクト管理
hrmos-kintai/ HRMOS勤怠 勤怠管理
misoca/ Misoca 見積・請求書
makeleaps/ MakeLeaps 請求書・見積書
notepm/ NotePM 社内wiki
relation/ Re:lation CS・メール共有
karte/ KARTE MA・CDP
akashi/ AKASHI / MFクラウド勤怠Plus 勤怠管理
yappli-crm/ Yappli CRM モバイルCRM
payjp/ PAY.JP 決済

グローバルSaaS(独自実装)

コネクタ サービス カテゴリ
pipedrive/ Pipedrive CRM
freshdesk/ Freshdesk カスタマーサポート
intercom/ Intercom CS・メッセージング
trello/ Trello プロジェクト管理
toggl/ Toggl Track 時間計測
harvest/ Harvest 時間計測・請求書
typeform/ Typeform フォーム作成
sendgrid/ SendGrid メール配信

公式MCPが提供されているサービス

以下は公式 MCP サーバーが提供されているため、そちらを利用してください。

サービス 公式MCP
freee会計 2026年3月公開(270 API)
マネーフォワードクラウド 2026年3月全プラン開放
kintone 2026年5月公式QSG公開
Chatwork chatwork/chatwork-mcp-server
Backlog nulab/backlog-mcp-server
Sansan 2025年11月提供開始
Salesforce Salesforce Hosted MCP Server(2026年4月 GA)
MiiTel RevComm(2025年12月 Beta)
SALES GO / GoCoo! 日本初MCPサーバー対応SFA(2025年10月 GA)
カラーミーショップ リモートMCPサーバー(2026年3月 GA)
zaico zaico MCP(2026年6月 GA)
Mackerel mackerelio-labs/mcp-server
電子印鑑GMOサイン GMO AI Connect(2026年秋 GA予定)
SalesNow api-data.api.salesnow.jp/v1/mcp
Zendesk 2026年夏 GA予定
HubSpot mcp.hubspot.com(2026年4月 GA)
Notion mcp.notion.com
Stripe mcp.stripe.com
Twilio Twilio Alpha MCP(Public Beta)
Airtable 2026年2月 GA
GitLab GitLab Duo MCP(Beta)
Asana mcp.asana.com V2(2026年2月)
Jira Atlassian MCP(2026年2月 GA)
Shopify Storefront/Dev MCP(2026年1月〜)
Mailchimp Intuit/Anthropic連携(2026年春)
Confluence Atlassian MCP(2026年2月 GA)
Square mcp.squareup.com(Beta)
Box mcp.box.com(2025年8月 GA)
Zoom Zoom MCP(2026年4月〜)
Dropbox mcp.dropbox.com(2026年3月 GA)
PagerDuty PagerDuty/pagerduty-mcp-server
Datadog datadog-labs/mcp-server(2026年3月 GA)
ClickUp mcp.clickup.com(Public Beta)
Calendly mcp.calendly.com
Brevo mcp.brevo.com
ActiveCampaign mcp.activecampaign.com
Sentry getsentry/sentry-mcp
Heroku heroku/heroku-mcp-server
Cloudflare cloudflare/mcp-server-cloudflare
Vercel mcp.vercel.com(2025年8月〜)
CircleCI CircleCI-Public/mcp-server-circleci

これらのサービスについては、過去に独自実装したコネクタを archive/ に移動し、メンテナンス対象外としています。新規利用では公式 MCP を使ってください。


セットアップ

必要なもの

  • Python 3.10 以上
  • Claude Desktop または MCP 対応クライアント

インストール

各コネクタは独立したパッケージです。使いたいコネクタのディレクトリで pip install -e . を実行します。

# 例: SmartHR コネクタをインストール
cd smarthr
pip install -e .

Claude Desktop への設定

~/Library/Application Support/Claude/claude_desktop_config.json(macOS)を編集します。

{
  "mcpServers": {
    "smarthr": {
      "command": "smarthr-mcp",
      "env": {
        "SMARTHR_CLIENT_ID": "your_client_id",
        "SMARTHR_CLIENT_SECRET": "your_client_secret", # pragma: allowlist secret
        "SMARTHR_SUBDOMAIN": "your_subdomain"
      }
    }
  }
}

各コネクタの詳細なセットアップ手順・必要な環境変数は、各ディレクトリの README.md を参照してください。


構造

各コネクタは以下の構成で統一されています。

{connector}/
├── pyproject.toml          # パッケージ設定
├── README.md               # セットアップ手順・ツール一覧
└── src/{connector}_mcp/
    ├── __init__.py
    ├── _http.py            # 共通ヘルパー(レスポンス整形・エラー処理)
    └── server.py           # MCP サーバー実装

_http.py は全コネクタ共通(外部依存を増やさないため各パッケージに同梱)。 API エラーは生のスタックトレースではなく原因と対処を示すメッセージに変換し、 大きすぎるレスポンスは LLM のコンテキストを溢れさせないよう切り詰める。

公式 MCP が提供されたサービスのコネクタは archive/ に退避している。


コントリビュート

新しいコネクタのリクエストや PR を歓迎します。

「このSaaSを繋ぎたい」だけでも歓迎ですコネクタのリクエストはこちら。非エンジニアの方は note のコメントからでも構いません。需要として記録し、重なっているものから優先して実装します。

コネクタ追加の前に:

  • 候補選定マトリクスでスコアリングしてから着手してください(公式MCP不在の持続性・需要・検証可能性・日本SMB密着度)
  • 対象サービスの公式 MCP が存在しないか確認してください(公式MCP一覧を参照)。既にある場合は作らない
  • 公開された REST API ドキュメントが存在し、テスト用クレデンシャルを取得できることを確認してください

実装のガイドライン:

  • 1 コネクタあたり 5 つ前後のツールを実装する
  • 認証情報は環境変数で渡す
  • レスポンス整形・エラー処理は共通ヘルパー _http.pyformat_response / error_response)を使う
  • 各コネクタに README.md(セットアップ手順・ツール一覧・使用例)を含める
  • 既存のコネクタ(例: payjp/)を参考にパターンを合わせる

ライセンス

MIT License

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured