Use the Model Context Protocol (MCP) to give Claude Desktop, Claude Cowork, or Claude Code direct access to your Google Business Profile tools.
First, you'll need a Fly Agent API key. Go to your API Keys settings and create a new key.
For Claude Desktop:
Cmd/Ctrl + ,)For Claude Cowork:
Go to Settings > MCP Servers in your Cowork workspace, then add the Fly Agent server configuration.
For Claude Code:
Run claude mcp add fly-agent or edit your ~/.claude/settings.json file directly.
Add the Fly Agent MCP configuration to your claude_desktop_config.json:
{
"mcpServers": {
"fly-agent": {
"command": "npx",
"args": ["fly-agent-mcp"],
"env": {
"FLY_AGENT_API_KEY": "your-api-key-here"
}
}
}
}your-api-key-here with your actual Fly Agent API keySave the configuration file and restart Claude to load the Fly Agent MCP server.
/mcp to reloadLook for the MCP tools icon (hammer) in the bottom of Claude's chat input. Click it to see available Fly Agent tools. You can now ask Claude to:
Instead of putting your API key in the config file, you can set it as a system environment variable:
export FLY_AGENT_API_KEY="your-key"Add to ~/.zshrc or ~/.bash_profile
setx FLY_AGENT_API_KEY "your-key"Run in Command Prompt as Administrator
Then remove the env section from your config file.
Make sure you've completely quit and restarted Claude Desktop (or started a new Claude Code session). Also verify that Node.js 18+ is installed by running node --version in your terminal.
Check that your API key is valid and hasn't expired. You can verify it works by visiting your API Keys settings.
Make sure your config file is valid JSON. Common issues: missing commas between entries, trailing commas after the last entry, or unescaped quotes in the API key.