Skip to content

Your First Tool Call

Once you’ve connected a service and configured your MCP client, it’s time to verify everything works.

The easiest way to test is by asking Claude to use one of your connected tools.

If you’ve connected Google, try asking:

“Check my unread emails from today”

Claude will use the gmail_search tool to query your inbox and return the results.

If you’ve connected Slack, try:

“What are the recent messages in #general?”

Claude will use slack_get_channel_history to fetch messages.

“What meetings do I have tomorrow?”

Claude will use calendar_list to show your upcoming events.

When a tool executes successfully, you’ll see:

  1. The tool name Claude is calling (e.g., gmail_search)
  2. The parameters being passed
  3. The response with your data

This means Fp Switchboard doesn’t have a valid token for the service. Go to the dashboard and reconnect the service.

The external service (Google, Slack, etc.) has temporarily blocked requests. Wait a few minutes and try again.

Your Fp Switchboard token may have been revoked. Generate a new token from the dashboard.

  1. Check that your MCP client is properly configured
  2. Verify the token is correctly copied (no extra spaces)
  3. Try restarting your MCP client

Each service exposes different tools. Here are some popular ones:

ServicePopular Tools
Gmailgmail_search, gmail_send, gmail_read
Calendarcalendar_list, calendar_create, calendar_update
Slackslack_send_message, slack_search_messages, slack_list_channels
Drivedrive_search, drive_read, drive_upload_file
Notionnotion_search, notion_create_page, notion_query_database
HubSpothubspot_search_contacts, hubspot_create_deal

You can also test directly with curl:

Terminal window
curl -X POST https://api.switchboard.fpdigital.ai/mcp/unified \
-H "Authorization: Bearer fps_unified_your_token" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}'

This returns a list of all available tools for your connected services.