Set up MCP Server Praxis Desk Kasse
Connect an external application to the Offisy MCP Server to access your practice data.
Prerequisites
- You have created an API token.
- The target application supports the MCP protocol (e.g. Claude Code, Claude Desktop, Cursor).
Set up Claude Code
- Open the file
~/.claude/settings.jsonor use the command in your terminal. - Add the following configuration:
json
{
"mcpServers": {
"offisy": {
"url": "https://my.offisy.at/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}Or via terminal:
bash
claude mcp add-json offisy '{"url":"https://my.offisy.at/mcp","headers":{"Authorization":"Bearer YOUR_TOKEN"}}'- Replace
YOUR_TOKENwith your copied API token.
Note: Claude Code uses Streamable HTTP Transport and connects directly via URL.
Set up Claude Desktop
- Open Claude Desktop and go to Settings > Developer > Edit configuration.
- Add the following configuration:
json
{
"mcpServers": {
"offisy": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://my.offisy.at/mcp",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer YOUR_TOKEN"
}
}
}
}- Replace
YOUR_TOKENwith your copied API token.
Note: Claude Desktop requires Node.js on your machine, as
mcp-remoteis used as a stdio proxy.
Other applications (Cursor, Windsurf)
The configuration depends on the specific application. In any case you need:
- MCP Server URL:
https://my.offisy.at/mcp - Authorization header:
Bearer YOUR_TOKEN
Check your application's documentation to see whether it supports Streamable HTTP or stdio as transport.
Setup via Offisy
You can also find the configuration examples directly in Offisy:
- Open Settings > MCP API Tokens.
- Click Setup.
- Choose your application (Claude Code or Claude Desktop).
- Copy the displayed configuration.