PC Access Detailed Steps
Cherry Studio Integration Guide
Cherry Studio Download URL: https://cherry-ai.com/
Step 1: Configure Model Service
Settings -> Model Service
- Name: kimi
- API Key: Obtain from kimi platform
Step 2: Configure Model
Click Manage, select a model like kimi-k2.5
Step 3: Configure MCP
Settings -> MCP Server -> Add -> Import from JSON
Copy the content below (Replace YOUR_API_KEY with your mcp-key from Quick Start Step 2), then click Save.
{
"mcpServers": {
"agentladle-mcp": {
"type": "streamableHttp",
"url": "https://mcp.agentladle.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Step 4: Start Chatting
Go to chat page, select the model and MCP to use tools.
OpenCode / Claude Code (CLI)
If you prefer a terminal workflow, use either option below to connect MCP (supplements the GUI clients and IDE above).
OpenCode
OpenCode website: https://opencode.ai/
Step 1: Install OpenCode
Download from the official site or install the CLI via your package manager, following the official docs.
Step 2: Configure MCP
Edit opencode.json in your project root or user config directory
Replace YOUR_API_KEY with the MCP key from Quick Start Step 2, then restart OpenCode.
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"agentladle-mcp": {
"type": "remote",
"url": "https://mcp.agentladle.com/mcp",
"enabled": true,
"oauth": false,
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Step 3: Verify and use
Run opencode mcp list to confirm agentladle-mcp is enabled, then use MCP tools in your session.
Claude Code
Claude Code docs: https://code.claude.com/docs/en/mcp
Step 1: Install Claude Code
Install the Claude Code CLI following the official documentation.
Step 2: Configure MCP
Option A: create .mcp.json in your project root; Option B: use the CLI command below
Replace YOUR_API_KEY with the MCP key from Quick Start Step 2. Or run: claude mcp add --transport http agentladle-mcp https://mcp.agentladle.com/mcp --header "Authorization: Bearer YOUR_API_KEY"
{
"mcpServers": {
"agentladle-mcp": {
"type": "http",
"url": "https://mcp.agentladle.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Step 3: Start chatting
After starting Claude Code, you can use agentladle-mcp tools to query annual report data in your session.
Cursor Integration
Cursor download: https://cursor.com/
Step 1: Open MCP settings
Settings (top right) -> Cursor Settings -> Tools & MCP
Click New MCP Server to add a server.
Step 2: Configure MCP
Paste the JSON below (replace YOUR_API_KEY with the MCP key from Quick Start Step 2), then save.
{
"mcpServers": {
"agentladle-mcp": {
"type": "streamableHttp",
"url": "https://mcp.agentladle.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Step 3: Start using
Enable agentladle-mcp in Cursor chat to use MCP tools for annual report queries.