INDIVIDUAL MCP TOOL
list_users
パスキーを登録した利用者 (external_id、表示名、有効な鍵の数、最終ログイン) を返します。q で external_id を部分一致で絞れます。 (api_key が必要: 管理画面で発行したキー)
LIVE ENDPOINT
https://api.sealgate.jp/v1/mcp
Connect to this endpoint to inspect the live schema for list_users and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name, description or schema mentions credentials.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.sealgate]
url = "https://api.sealgate.jp/v1/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"sealgate": {
"type": "http",
"url": "https://api.sealgate.jp/v1/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: sealgate
Remote MCP URL: https://api.sealgate.jp/v1/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"sealgate": {
"url": "https://api.sealgate.jp/v1/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"sealgate": {
"type": "http",
"url": "https://api.sealgate.jp/v1/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "sealgate",
"transport": "streamable-http",
"url": "https://api.sealgate.jp/v1/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
get_integration_guide— SealGate の組み込み方 (流れ、REST API、ブラウザ SDK、サーバー側の実装例、エラー、料金) を Markdown で返します。list_plans— ステップ式の料金表 (税抜)。その月のログイン利用者数 (MAU) がどの帯に入るかで月額が決まります。signup_url— SealGate の登録 URL を返します。登録は利用者本人が Google か GitHub のアカウントでログインするだけです (エージェントは代行できません)。登録後、管理画面で発行した API キーを以後の tool の引数 api_key に渡してください。get_app— この API キーのアプリ (rp_id、許可オリジン、パスワード併存期限、Webhook URL) を返します。 (api_key が必要: 管理画面で発行したキー)list_credentials— 利用者 (external_id) のパスキー一覧を返します。失効済みも含み、revoked_at で区別します。 (api_key が必要: 管理画面で発行したキー)revoke_credential— パスキーを 1 本失効します。取り消せません。 (api_key が必要: 管理画面で発行したキー)revoke_user— 利用者 (external_id) のパスキーをすべて失効します (退会・乗っ取り時)。取り消せません。 (api_key が必要: 管理画面で発行したキー)issue_recovery_token— 端末をなくした利用者が別の端末でパスキーを登録し直すための 15 分有効のトークンを返します。本人確認は開発者側で済ませてから呼んでください。 (api_key が必要: 管理画面で発行したキー)