TryBiut MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TRYBIUT_BASE_URL | No | Base URL of the TryBiut API. | https://trybiut.com |
| TRYBIUT_API_TOKEN | No | User's API token, required for private tools. | |
| TRYBIUT_REQUIRE_SUBSCRIPTION | No | Reserved: strict mode requiring subscription. | false |
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
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| trybiut_statusA | Check that trybiut.com API is reachable. No login needed. |
| trybiut_tax_previewA | Basic estimate of yearly tax savings. Public demo endpoint, no login needed. |
| trybiut_tax_calculateC | Basic tax breakdown for an amount/region/business type. No login needed. |
| trybiut_tax_calendarB | Public tax obligations calendar for a year. No login needed. |
| trybiut_pricing_countriesA | List countries covered by the pricing/market-data module. No login needed. |
| trybiut_helpA | How to register, log in and get an API token; what works without subscription. |
| trybiut_auth_registerA | Start registration on trybiut.com so you can later use private tools. Returns the signup link + steps. |
| trybiut_meA | Verify the API token and return the logged-in user profile. Requires login. |
| trybiut_subscriptionA | Check the current plan/subscription of the logged-in user. Requires login. |
| trybiut_dashboard_taxesA | Aggregated tax dashboard of the logged-in user. Requires login (+ subscription for full data). |
| trybiut_invoices_listB | List invoices of the logged-in user. Requires login. Never accessible anonymously. |
| trybiut_movements_listB | List bank/income-expense movements of the logged-in user. Requires login. |
| trybiut_tax_historyA | Filed tax forms history of the logged-in user. Requires login. |
| trybiut_reports_taxesA | Detailed tax report of the logged-in user. Requires login (+ subscription for full data). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 14 tools
Most tools are cleanly separated by public versus authenticated access and by resource type, but trybiut_dashboard_taxes and trybiut_reports_taxes are close in purpose, and trybiut_tax_preview versus trybiut_tax_calculate could be confused by an agent looking for a generic tax estimate. The descriptions help clarify, but an agent may still misroute requests between these overlapping tax-related tools.
All tools share the trybiut_ prefix and use lowercase snake_case, creating a recognizable family. Most multi-word names follow a domain_resource pattern, though bare nouns like trybiut_status, trybiut_subscription, and trybiut_me are minor deviations from the resource_action feel of names like trybiut_invoices_list and trybiut_auth_register.
Fourteen tools is a reasonable size for a tax/finance connector that covers public demo endpoints plus authenticated account data. It sits near the upper edge of the ideal range, and some reporting tools overlap enough that the set could be slightly tighter.
The toolset covers the core workflow of public exploration, registration, token validation, subscription lookup, and read-only access to taxes, invoices, movements, and reports. It is missing mutation-style operations like creating invoices or filing taxes, but for an API-focused read connector, the main surface is covered.