5d66dd6bfc
* fix: prevent Chrome auto-translate from crashing React during onboarding
Chrome auto-translate modifies DOM text nodes when it detects a Swedish
page (lang="sv") in a browser set to English. React does not expect
external DOM mutations and throws, crashing the entire component tree
into global-error.tsx on every step transition.
Add translate="no" and <meta name="google" content="notranslate"> to
suppress browser translation. Also fix timezone-unsafe date parsing in
fiscal period validation (new Date("YYYY-MM-DD") + getDate() returns
local-timezone values, shifting dates by -1 day in Western timezones).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: add notranslate meta tag to global-error.tsx for consistency
Per review feedback — global-error.tsx renders its own <html> document,
so it needs the same <meta name="google" content="notranslate"> tag as
layout.tsx to fully suppress Chrome translation on error pages.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add MCP server extension with OAuth, API keys, and KPI dashboard
Let users do bookkeeping through Claude Desktop, Claude Code, or any
MCP-compatible client. "Show my uncategorized transactions." "Book that
as office supplies." "Invoice Acme for 15,000 kr."
MCP server (extension):
- 10 tools: transactions, categorization, customers, invoices,
trial balance, VAT report, KPI report, income statement
- JSON-RPC 2.0 protocol (no SDK dependency, works in serverless)
- Tool annotations, pagination, input validation per MCP best practices
- Same engine as web UI (VAT rules, exchange rates, event emission)
API key infrastructure (core):
- api_keys table with RLS, rate limiting (100 RPM), scopes column
- Atomic rate limit via DB RPC (validate_and_increment_api_key)
- Key management API routes + settings UI panel
OAuth 2.1 for Claude Desktop connectors:
- .well-known/oauth-protected-resource + oauth-authorization-server
- Authorization endpoint with consent page
- Token endpoint with PKCE verification
- Stateless encrypted auth codes (AES-256-GCM, no DB storage)
- Dynamic client registration
KPI dashboard:
- /nyckeltal page with hero cards, operational grid, trend chart
- GET /api/reports/kpi endpoint
- Gross margin, cash position, expense ratio, avg payment days,
VAT liability, revenue/expense trend
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: address OAuth security vulnerabilities from code review
Critical fixes:
- Auth code replay: Track used codes in oauth_used_codes table with
unique constraint. Codes are single-use per OAuth 2.1 §4.1.2.
- Open redirect: Validate redirect_uri against hardcoded allowlist
of known Claude callback URLs + localhost for dev.
P1 fixes:
- Move API key creation from /authorize to /token endpoint. Keys are
only created after PKCE verification, preventing orphaned keys on
abandoned OAuth flows.
- Add ensureInitialized() to MCP server so event handlers load and
transaction.categorized events reach extensions.
P2 fixes:
- Remove 'plain' from PKCE methods — only S256 is advertised and
accepted.
- Fix extension count in sectors test (10 → 11 for mcp-server).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: remove duplicate ensureInitialized() that caused circular import
The extension router (ext/[...path]/route.ts) already calls
ensureInitialized() before dispatching to handlers. The duplicate
call in server.ts created a circular import that Turbopack couldn't
resolve, breaking the Vercel build.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
95 lines
2.3 KiB
JavaScript
95 lines
2.3 KiB
JavaScript
#!/usr/bin/env node
|
|
/**
|
|
* Stdio-to-HTTP bridge for Claude Desktop.
|
|
* Reads JSON-RPC from stdin, POSTs to the gnubok MCP endpoint, writes response to stdout.
|
|
*
|
|
* Usage in claude_desktop_config.json:
|
|
* {
|
|
* "mcpServers": {
|
|
* "gnubok": {
|
|
* "command": "node",
|
|
* "args": ["/path/to/erp-base/scripts/mcp-bridge.mjs"],
|
|
* "env": {
|
|
* "GNUBOK_API_KEY": "gnubok_sk_...",
|
|
* "GNUBOK_URL": "http://localhost:3000/api/extensions/ext/mcp-server/mcp"
|
|
* }
|
|
* }
|
|
* }
|
|
* }
|
|
*/
|
|
|
|
const API_KEY = process.env.GNUBOK_API_KEY
|
|
const URL = process.env.GNUBOK_URL || 'http://localhost:3000/api/extensions/ext/mcp-server/mcp'
|
|
|
|
if (!API_KEY) {
|
|
process.stderr.write('Error: GNUBOK_API_KEY environment variable is required\n')
|
|
process.exit(1)
|
|
}
|
|
|
|
let buffer = ''
|
|
|
|
process.stdin.setEncoding('utf8')
|
|
process.stdin.on('data', (chunk) => {
|
|
buffer += chunk
|
|
|
|
// JSON-RPC messages are newline-delimited
|
|
let newlineIdx
|
|
while ((newlineIdx = buffer.indexOf('\n')) !== -1) {
|
|
const line = buffer.slice(0, newlineIdx).trim()
|
|
buffer = buffer.slice(newlineIdx + 1)
|
|
|
|
if (!line) continue
|
|
|
|
handleMessage(line).catch((err) => {
|
|
process.stderr.write(`Bridge error: ${err.message}\n`)
|
|
})
|
|
}
|
|
})
|
|
|
|
process.stdin.on('end', () => {
|
|
process.exit(0)
|
|
})
|
|
|
|
async function handleMessage(line) {
|
|
let parsed
|
|
try {
|
|
parsed = JSON.parse(line)
|
|
} catch {
|
|
process.stderr.write(`Invalid JSON: ${line}\n`)
|
|
return
|
|
}
|
|
|
|
// Notifications (no id) don't expect a response, but still forward them
|
|
const isNotification = parsed.id === undefined || parsed.id === null
|
|
|
|
try {
|
|
const res = await fetch(URL, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'Authorization': `Bearer ${API_KEY}`,
|
|
},
|
|
body: line,
|
|
})
|
|
|
|
if (res.status === 204) {
|
|
// No content (e.g. notifications/initialized) — nothing to write back
|
|
return
|
|
}
|
|
|
|
const text = await res.text()
|
|
if (text) {
|
|
process.stdout.write(text + '\n')
|
|
}
|
|
} catch (err) {
|
|
if (!isNotification) {
|
|
const errorResponse = JSON.stringify({
|
|
jsonrpc: '2.0',
|
|
id: parsed.id,
|
|
error: { code: -32000, message: `Bridge error: ${err.message}` },
|
|
})
|
|
process.stdout.write(errorResponse + '\n')
|
|
}
|
|
}
|
|
}
|