1. Conduid
  2. Developer Tools
  3. Steuerboard
MCP server · Developer Tools

Steuerboard

MCP Server for the Steuerboard API

Unclaimed last commit 6 months ago devtools
51Fair

Scored 2 days ago · breakdown

About Steuerboard

Steuerboard is an MCP server published by steuerboard in the Developer Tools category: mCP Server for the Steuerboard API. It has been installed 0 times through Conduid.

The repository has 1 stars and 0 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx steuerboard-mcp-typescript

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Steuerboard

Powered by Claude · Grounded in docs

I know everything about Steuerboard. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.4.1mcp-typescript - v0.4.1 - 2026-08-18 20:46:57 · 18 Aug 2026Generated by Speakeasy CLI [@steuerboard/mcp 0.4.1]() Mcp-typescript SDK Changes: `Steuerboard.health.index()`: `response.status[500]` **Added** `Steuerboard.health.health()`: `response.status[500]` **Added** `Steuerboard.health.ping()`:…
v0.4.0mcp-typescript - v0.4.0 - 2026-07-13 19:53:40 · 13 Jul 2026Generated by Speakeasy CLI 2026-07-13 19:53:40 Changes Based on: OpenAPI Doc 0.1.0 Speakeasy CLI 1.790.0 (2.917.0) https://github.com/speakeasy-api/speakeasy Generated [mcp-typescript v0.4.0] . Publishing Completed
v0.3.4mcp-typescript - v0.3.4 - 2026-07-13 08:28:38 · 13 Jul 2026Generated by Speakeasy CLI [@steuerboard/mcp 0.3.4]() Mcp-typescript SDK Changes Detected: `Steuerboard.health.health()`: **Added** `Steuerboard.collect.sessions.getcollectSessionByToken()`: **Added**…
v0.3.3mcp-typescript - v0.3.3 - 2025-10-06 12:11:50 · 6 Oct 2025Generated by Speakeasy CLI 2025-10-06 12:11:50 Changes Based on: OpenAPI Doc 0.1.0 Speakeasy CLI 1.634.2 (2.721.3) https://github.com/speakeasy-api/speakeasy Generated [mcp-typescript v0.3.3] . Publishing Completed
v0.3.0mcp-typescript - v0.3.0 - 2025-10-06 08:05:58 · 6 Oct 2025Generated by Speakeasy CLI 2025-10-06 08:05:58 Changes Based on: OpenAPI Doc 0.1.0 Speakeasy CLI 1.634.2 (2.721.3) https://github.com/speakeasy-api/speakeasy Generated [mcp-typescript v0.3.0] . Publishing Completed

README

Steuerboard TypeScript MCP Server

Model Context Protocol (MCP) Server for the Steuerboard API.

Summary

For more information about the API: Find out more about Steuerboard API

Table of Contents

Installation

Deployed at https://mcp.steuerboard.com

Install the MCP server as a Desktop Extension using the pre-built mcp-server.dxt file:

Simply drag and drop the mcp-server.dxt file onto Claude Desktop to install the extension.

The DXT package includes the MCP server and all necessary configuration. Once installed, the server will be available without additional setup.

[!NOTE] DXT (Desktop Extensions) provide a streamlined way to package and distribute MCP servers. Learn more about Desktop Extensions.

Install MCP Server

Or manually:

  1. Open Cursor Settings
  2. Select Tools and Integrations
  3. Select New MCP Server
  4. If the configuration file is empty paste the following JSON into the MCP Server Configuration:
{
  "mcpServers": {
    "Steuerboard": {
      "type": "mcp",
      "url": "https://mcp.steuerboard.com/mcp",
      "headers": {
        "authorization": "${@STEUERBOARD/MCP_BEARER_AUTH}"
      }
    }
  }
}
claude mcp add --transport sse Steuerboard https://mcp.steuerboard.com/sse --header "authorization: ..."

Refer to Official Windsurf documentation for latest information

  1. Open Windsurf Settings
  2. Select Cascade on left side menu
  3. Click on Manage MCPs. (To Manage MCPs you should be signed in with a Windsurf Account)
  4. Click on View raw config to open up the mcp configuration file.
  5. If the configuration file is empty paste the full json
{
  "mcpServers": {
    "Steuerboard": {
      "type": "mcp",
      "url": "https://mcp.steuerboard.com/mcp",
      "headers": {
        "authorization": "${@STEUERBOARD/MCP_BEARER_AUTH}"
      }
    }
  }
}

Refer to Official VS Code documentation for latest information

  1. Open Command Palette
  2. Search and open MCP: Open User Configuration. This should open mcp.json file
  3. If the configuration file is empty paste the full json
{
  "servers": {
    "Steuerboard": {
      "type": "mcp",
      "url": "https://mcp.steuerboard.com/mcp",
      "headers": {
        "authorization": "${env:@STEUERBOARD/MCP_BEARER_AUTH}"
      }
    }
  }
}
npx @steuerboard/mcp start --bearer-auth ...

For a full list of server arguments, run:

npx @steuerboard/mcp --help

Development

Run locally without a published npm package:

  1. Clone this repository
  2. Run npm install
  3. Run npm run build
  4. Run node ./bin/mcp-server.js start --bearer-auth ... To use this local version with Cursor, Claude or other MCP Clients, you'll need to add the following config:
{
  "mcpServers": {
    "Steuerboard": {
      "command": "node",
      "args": ["./bin/mcp-server.js", "start", "--bearer-auth", "..."]
    }
  }
}

Or to debug the MCP server locally, use the official MCP Inspector:

npx @modelcontextprotocol/inspector node ./bin/mcp-server.js start --bearer-auth ...

Cloudflare Deployment

To deploy to Cloudflare Workers:

npm install
npm run deploy

To run the cloudflare deployment locally:

npm install
npm run dev

The local development server will be available at http://localhost:8787

Then install with Claude Code CLI:

claude mcp add --transport sse Steuerboard http://localhost:8787/sse --header "authorization: ..."

Contributions

While we value contributions to this MCP Server, the code is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation. We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release.

MCP Server Created by Speakeasy

README mirrored from the source repository 2 days ago. The original is authoritative.

Questions

About Steuerboard

How do I install Steuerboard?

Run npx steuerboard-mcp-typescript, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Steuerboard safe to use with an AI agent?

Its trust score is 51 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Steuerboard still maintained?

Yes — the latest release is v0.4.1 (18 Aug 2026), and the last commit was 6 months ago. The repository has 1 stars and 0 open issues.