Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.openfinance.tech/llms.txt

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

Claude Desktop supports remote MCP servers either through the Connectors UI or by editing the config file directly. The config file approach is shown here for parity with other editors.
1

Open Developer settings

Open Claude Desktop → SettingsDeveloper.
2

Edit config

Click Edit Config. Find claude_desktop_config.json and open it with a text editor.
3

Add the server

You will see something like this:
{
  "preferences": {
    "coworkScheduledTasksEnabled": true,
    "sidebarMode": "task"
  }
}
Add a comma after the preferences closing brace, then paste the mcpServers block:
{
  "preferences": {
    "coworkScheduledTasksEnabled": true,
    "sidebarMode": "task"
  },
  "mcpServers": {
    "openfinance-tech": {
      "type": "http",
      "url": "https://api.openfinance.tech/agent/mcp",
      "headers": {
        "x-api-key": "open_xxxxx"
      }
    }
  }
}
If you only need public tools, drop the headers object entirely.
4

Quit Claude fully

Click Claude in the menu bar → Quit Claude (or press Cmd+Q).
5

Reopen and verify

Reopen Claude Desktop. Start a new conversation, you should see a hammer icon in the chat input area.
Closing the window is not enough, you must fully quit the app for Claude Desktop to pick up the new config.