> ## Documentation Index
> Fetch the complete documentation index at: https://docs.steuerboard.com/llms.txt
> Use this file to discover all available pages before exploring further.

# MCP server

> Integrate the Steuerboard API into your AI assistant

The Model Context Protocol (MCP) server provides a standardized interface that allows any compatible AI model or agent to access your Steuerboard data in a simple and secure way.

Connect to our MCP server natively in Claude, Cursor, and other clients or use the mcp-remote module for backwards compatibility with clients that do not support remote MCP.

The Steuerboard MCP server has tools available for finding, creating, and updating objects in Steuerboard like clients, workspaces, tasks, files and more — with more functionality on the way, and feedback on its functionality is welcomed.

**Repository**: [steuerboard/steuerboard-mcp-typescript](https://github.com/steuerboard/steuerboard-mcp-typescript)

## Installation

<Accordion title="Langdock">
  <Steps>
    <Step title="Navigate to Integrations">
      Navigate to [Integrations](https://app.langdock.com/integrations) in the sidebar
    </Step>

    <Step title="Add Integration">
      Click on the "Add Integration" button and enter following details:

      * Type: **Connect remote MCP**
      * Name: **Steuerboard**
    </Step>

    <Step title="Configure MCP client">
      Enter the following details:

      * Server URL: [https://mcp.steuerboard.com/mcp](https://mcp.steuerboard.com/mcp)
      * Authentication method: **API Key**
    </Step>

    <Step title="Add Connection">
      Create a new connection and enter your **Steuerboard API Key**.

      *Don't have one? [Get your API Key](/api-keys)*
    </Step>

    <Step title="Test Connection & Save">
      Test the connection and save the integration
    </Step>
  </Steps>
</Accordion>

<Accordion title="Claude">
  **Team, Enterprise (Claude.ai)**

  <Steps>
    <Step title="Navigate to Settings">
      Navigate to Settings in the sidebar
    </Step>

    <Step title="Scroll to Integrations">
      Scroll to Integrations at the bottom and click Add more
    </Step>

    <Step title="Add Integration">
      Enter the following details:

      * Integration name: Steuerboard
      * Integration URL: [https://mcp.steuerboard.com/mcp](https://mcp.steuerboard.com/mcp)

      Make sure to enable the tools in any new chats
    </Step>
  </Steps>
</Accordion>

<Accordion title="Claude Desktop">
  *One-click installation for Claude Desktop users*

  <Steps>
    <Step title="Download DXT File">
      Download the [DXT File ⬇️](https://mcp.steuerboard.com/mcp-server.dxt).
    </Step>

    <Step title="Open Extensions">
      Open Claude Desktop and go to **Settings -> Extensions**.
    </Step>

    <Step title="Install MCP Server">
      Drag the DXT file into the Extensions page to install the MCP server.
    </Step>
  </Steps>

  The DXT file contains all necessary configuration for the MCP server and will be automatically installed when dragged into the Extensions page.
</Accordion>

<Accordion title="Claude Code">
  *Use the Claude Code CLI to add the MCP server:*

  ```bash theme={null}
  claude mcp add --transport http Steuerboard https://mcp.steuerboard.com/mcp --header "authorization: ..." 
  ```
</Accordion>

<Accordion title="Manual Installation">
  ## Manual Installation

  *Start the MCP server manually using npx:*

  ```bash theme={null}
  npx @steuerboard/mcp start --bearer-auth ...
  ```

  For a full list of server arguments:

  ```bash theme={null}
  npx @steuerboard/mcp --help
  ```
</Accordion>

**Don't have an account?**

<Note>We offer a free plan for testing. Just mail us at [founders@steuerboard.com](mailto:founders@steuerboard.com)</Note>

If you want to use our App in production, please take a look at our [Pricing page](https://steuerboard.com/pricing) to book a call with us.
