The AI SDK Assistant MCP server is compatible with Anthropic’s LLMs (claude.ai, Claude Mobile, Claude Desktop, and Claude Code). These platforms use what are colloquially termed “connectors” to access MCP servers directly from the existing UI.
You’ll need the official MCP server URL to use AI SDK Assistant with your LLM provider. Since the tool is still in Private Beta, please do not share this URL with others.
Claude Pro, Max, or Enterprise account (starting at $20/month)
MCP Server URL: https://sdk-rag-agent-production.up.railway.app/mcp
If you intend to use both claude.ai (web browser) **and **Claude Code, you must perform the setup process for each application. Although your Anthropic credentials are shared between the two platforms, MCP servers (like the AI SDK Assistant) live locally within their respective installations and are not automatically transferred.
Paste the MCP Server URL into the “Remote MCP server URL” field
Click Add
Refresh if needed — you should now see your new connector
Configure ToolsThe AI SDK Assistant enables Claude to access SDK information through “Tools.” These are specialized search methods and filters that influence what type of content is retrieved when you ask a question.There are currently 14 tools supported for Claude; you can view more details about each tool in the Tools page.
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 AI SDK Assistant’s tools:
Navigate to Settings → Connectors
Next to the AI SDK Assistant connector, click the Configure button
You’ll now be able to see all available tools AI SDK Assistant offers
By default, all tools will be enabled.
Disable the search and fetch tools before prompting with AI SDK Assistant. These tools are intended for use only with ChatGPT.
Set Tool PermissionsThe 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.
When using AI SDK Assistant for the first time, we recommend you set all tool permissions to allow unsupervised. Based on your observations, you can disable tools and change permissions to help Claude’s searches align better with your preferences.
Configure System Prompt (Optional but Recommended)A system prompt significantly improves Claude’s SDK Assistant performance. See the System Prompt Configuration section below for setup instructions.
For the best experience with AI SDK Assistant, add the system prompt after initial testing. It ensures Claude uses MCP tools correctly and generates production-ready code.
If you intend to use both claude.ai (web browser) **and **Claude Code, you must perform the setup process for each application. Although your Anthropic credentials are shared between the two platforms, MCP servers (like the AI SDK Assistant) live locally within their respective installations and are not automatically transferred.
claude mcp remove AI SDK Assistant --scope user # Remove from user scopeclaude mcp remove AI SDK Assistant --scope project # Remove from project scopeclaude mcp remove AI SDK Assistant # Remove from local scope
Restart Claude Code or start a new session after modifying MCP server configurations.
Claude Code supports granular tool-level permissions configured through settings files. You can approve all tools from a server or specific individual tools.Approve all tools from the AI SDK Assistant server:
Adding a system prompt to your AI assistant significantly improves response quality when working with the Camera Remote SDK. The system prompt is a comprehensive set of instructions (~450 lines) that teaches the LLM how to effectively use AI SDK Assistant tools and generate accurate, production-ready code.
This is a large prompt (450+ lines, ~4,000 tokens). Copy the entire content to ensure proper functionality.
Copy
{ "prompt": { "title": "Sony Camera Remote SDK AI Assistant - System Prompt", "sections": [ { "section": "Purpose & Scope", "content": { "description": "You are an expert coding assistant specializing in the Sony Camera Remote SDK. Your primary mission is to help developers integrate Sony camera control into their applications using accurate, SDK-specific information.", "supported_versions": [ { "version": "V1.14.00", "status": "previous", "languages": ["C++"], "platforms": ["Windows", "macOS", "Linux"] }, { "version": "V2.00.00", "status": "current", "languages": ["C++", "C#"], "platforms": ["Windows", "macOS", "Linux"], "notes": "C# support is Windows only" } ], "knowledge_source": "The 'AI SDK Assistant' MCP Server is your single source of truth for all SDK-related information. This tool provides access to official documentation, sample code, API references, and compatibility data.", "reference_documentation": "https://sony-88f06855.mintlify.app/", "reference_documentation_purpose": "For understanding the MCP server's capabilities, limitations, and setup" } } ], "summary": { "core_principles": [ "Always use MCP tools for SDK queries, never web search", "Confirm SDK version and language before answering", "Generate real, compilable code with proper citations", "For C# developers, always search for C# code examples", "Be thorough but acknowledge when information isn't available", "Stay solution-focused and approachable" ] } }}
The full system prompt contains additional detailed sections on tool selection, code generation standards, troubleshooting workflows, and more. The complete prompt is available in the system-prompt.md file.