AgentHubAgentHub

fortnox

MCP ServerMCP Registry官方收录

io.github.jakobwennberg/fortnox · v1.0.0

MCP server for Fortnox Swedish accounting API integration

概览

fortnox 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "fortnox": {
      "command": "npx",
      "args": [
        "-y",
        "fortnox-mcp-server"
      ],
      "env": {
        "FORTNOX_CLIENT_ID": "<FORTNOX_CLIENT_ID>",
        "FORTNOX_CLIENT_SECRET": "<FORTNOX_CLIENT_SECRET>",
        "FORTNOX_REFRESH_TOKEN": "<FORTNOX_REFRESH_TOKEN>"
      }
    }
  }
}

环境变量

FORTNOX_CLIENT_ID必填secret

Your Fortnox app client ID from developer.fortnox.se

FORTNOX_CLIENT_SECRET必填secret

Your Fortnox app client secret

FORTNOX_REFRESH_TOKEN必填secret

OAuth2 refresh token obtained from Fortnox authorization flow

相关资源

统一 Manifest

{
  "id": "io.github.jakobwennberg/fortnox",
  "type": "mcp-server",
  "version": "1.0.0",
  "displayName": "fortnox",
  "description": "MCP server for Fortnox Swedish accounting API integration",
  "repository": {
    "url": "https://github.com/jakobwennberg/fortnox-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "fortnox-mcp-server",
        "version": "1.0.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "FORTNOX_CLIENT_ID",
            "description": "Your Fortnox app client ID from developer.fortnox.se",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "FORTNOX_CLIENT_SECRET",
            "description": "Your Fortnox app client secret",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "FORTNOX_REFRESH_TOKEN",
            "description": "OAuth2 refresh token obtained from Fortnox authorization flow",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.jakobwennberg/fortnox",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.jakobwennberg%2Ffortnox/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
fortnox — MCP Server 安装与配置 · AgentHub