Jinshuju MCP Server allows AI assistants such as Claude, ChatGPT, Cursor, and other MCP-compatible clients to interact with Jinshuju through the Model Context Protocol. It helps users manage forms, query form details, create and edit forms, read and write entries, and check billing-related information through secure OAuth or API Key authentication.
概要
# Jinshuju MCP Server
Jinshuju MCP Server allows AI assistants such as Claude, ChatGPT, Cursor, Windsurf, and other MCP-compatible clients to interact with Jinshuju through the Model Context Protocol.
With this MCP server, users can manage forms, query form details, create and edit forms, read and write form entries, and check account, invoice, and payment history information through secure OAuth 2.0 or API Key authentication.
## Server URL
https://jinshuju.net/mcp
## Capabilities
- Manage forms: list forms, get form details, create forms, and edit form structures or settings
- Manage entries: list entries, get entry details, create entries, update entries, and delete entries
- Query current user and billing account information
- Query invoices and payment history
- Support OAuth 2.0 authorization
- Support API Key/Secret authentication with HTTP Basic Auth
## Configuration
Recommended OAuth configuration:
```json
{
"mcpServers": {
"jinshuju": {
"url": "https://jinshuju.net/mcp"
}
}
}
API Key/Secret configuration:
{
"mcpServers": {
"jinshuju": {
"url": "https://jinshuju.net/mcp",
"headers": {
"Authorization": "Basic BASE64_ENCODED_CREDENTIALS"
}
}
}
}
To generate BASE64_ENCODED_CREDENTIALS:
echo -n "api_key:api_secret" | base64
Documentation
サーバー設定
{
"mcpServers": {
"jinshuju": {
"url": "https://jinshuju.net/mcp"
}
}
}