bokio-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| bokio_company_info | Retrieve company information. |
| bokio_list_fiscal_yearsA | List fiscal years (needed for SIE export ids). |
| bokio_get_fiscal_yearA | Get a single fiscal year by id. |
| bokio_chart_of_accountsB | Get the chart of accounts (BAS). |
| bokio_get_account | Get one account from the chart of accounts. |
| bokio_download_sie | Download the SIE file for a fiscal year. Saves to savePath if given, else returns a text preview. |
| bokio_list_journal_entries | List journal entries (verifikationer). Use from/to for a date range or query for raw filters. |
| bokio_get_journal_entry | Get a journal entry by id. |
| bokio_list_invoices | List customer invoices. |
| bokio_get_invoice | Get an invoice by id. |
| bokio_list_customers | List customers. |
| bokio_get_customerB | Get a customer by id. |
| bokio_list_itemsB | List items (articles). |
| bokio_get_itemC | Get an item by id. |
| bokio_list_uploads | List uploaded files / receipts. |
| bokio_get_upload | Get upload metadata by id. |
| bokio_download_upload | Download an uploaded file's data to savePath. |
| bokio_raw_get | GET an arbitrary Bokio API path (read-only escape hatch). {companyId} is substituted. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| company-info | Company information for the default Bokio company (BOKIO_COMPANY_ID). |
| chart-of-accounts | Chart of accounts (BAS) for the default company. |
TDQS
Scored across 6 tools
Each tool targets a distinct entity or operation: fiscal years (list/get), chart of accounts, customer (get), items (list/get). No overlapping purposes; list/get pairs are clearly distinguished.
Most tools follow a consistent 'bokio_verb_noun' pattern (e.g., list_fiscal_years, get_item). The exception is 'bokio_chart_of_accounts', which lacks a verb, but still clearly conveys its purpose. Overall pattern is mostly predictable.
6 tools is a reasonable size for a focused accounting integration. The set covers core read operations without being too sparse or bloated. Slightly on the low side but appropriate for a read-only subset.
The tool surface is heavily read-only, missing common write operations like creating/updating customers, items, transactions, or generating reports. For a full accounting MCP, these gaps would cause agent failures in most workflows.