Skip to main content

Documentation Index

Fetch the complete documentation index at: https://crsdk.app/llms.txt

Use this file to discover all available pages before exploring further.

Quick Setup

Want the short version? Get running in under 5 minutes
Sony provides three public MCP servers and one authenticated server for AI-assisted development:
ServerNameDescriptionURL
Web API DocsCameraWebAPICamera Remote Web API endpoints, Client SDK (TypeScript)https://crsdk.app/mcp
SDK DocsCameraRemoteSDKCamera Remote SDK documentation, API references, and code examples (C++/C#)https://sdk-rag-agent-production.up.railway.app/mcp
Help GuidesCameraHelpCamera help guides, settings, and feature documentation for 24 Sony camera modelshttps://camera-rag-agent-production.up.railway.app/mcp
Athena BridgeAthenaBridgeAI-powered SDK planning and analysis (requires authentication)https://sdk-bridge-production.up.railway.app/mcp
All servers are compatible with Anthropic’s LLMs (claude.ai, Claude Mobile, Claude Desktop, and Claude Code) as well as other AI-powered IDEs like Cursor. You can install one, two, or all three public servers. Athena Bridge requires a one-time authentication step.
These tools are still in Private Beta. Please do not share the MCP server URLs with others.

Setup Instructions

Requirements

  • Claude Pro, Max, or Enterprise account (starting at $20/month)
If you intend to use both claude.ai and Claude Code, you must set up each application separately. MCP servers are not shared between them.

Configuration Steps

Repeat these steps for each MCP server you want to install:
  1. Add the Connector
    • Go to Settings → Connectors
    • Click Add custom connector
    • Name it using the server name from the table above (e.g. CameraWebAPI, CameraRemoteSDK, or CameraHelp)
    • Paste the corresponding MCP Server URL into the “Remote MCP server URL” field
    • Click Add
    • Refresh if needed — you should now see your new connector
  2. Configure Tools Each server provides specialized search tools. Your AI automatically selects the best tool for your question.
    Claude will automatically determine the best tool to answer the query, though you can always specify a tool if you already know what type of content you are looking for.
    To configure a server’s tools:
    • Navigate to Settings → Connectors
    • Next to the connector, click the Configure button
    • You’ll now be able to see all available tools the server offers
    By default, all tools will be enabled.
    Disable the search and fetch tools before prompting. These tools are intended for use only with ChatGPT.
  3. Set Tool Permissions The default tool permission setting is always ask for permission. In this configuration, Claude will ask for permission every time it wants to use a tool. To allow automatic tool usage, set the permission to allow unsupervised.
    We recommend setting all tool permissions to allow unsupervised when first using the servers. Based on your observations, you can disable tools and change permissions to help Claude’s searches align better with your preferences.
  4. Configure System Prompt (Optional but Recommended) A system prompt significantly improves performance. See the System Prompt page for setup instructions.

Using the MCP Servers

  1. Open a new chat window
  2. Click the search and tools icon button in the chat box
  3. You should see your connectors at the top of the list
  4. Toggle the connectors on to enable them
  5. You can also toggle individual tools directly in the chat window

Removing a Connector

  • Go to Settings → Connectors
  • Click the More icon button next to the connector
  • Click Remove to permanently remove it, or Disconnect to temporarily disable it

Athena Bridge (Authenticated)

Athena Bridge is an authenticated MCP server that provides AI-powered SDK planning and analysis. It requires a one-time OAuth login before installation.

1. Authenticate

npx camera-server auth login
This opens your browser for OAuth authentication. A JWT token is stored locally (~/.camera-remote-web-api/auth.json) and is valid for 30 days.

2. Install

# Install for Claude Code (user scope)
npx camera-server athena-bridge install claude-code user

# Or for other agents
npx camera-server athena-bridge install vscode user
npx camera-server athena-bridge install cursor project
The CLI automatically injects your Bearer token into the MCP server configuration.

3. Manage authentication

npx camera-server auth status   # Check if authenticated and token expiry
npx camera-server auth logout   # Sign out and remove stored token
When your token expires after 30 days, run npx camera-server auth login again to re-authenticate. The AthenaBridge MCP server will stop working until you re-authenticate.