Skip to main content
Glama

okun-koneosa

Server Details

Finnish industrial supplies store. Read-only MCP with 4 tools.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.8/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a distinct function: searching products, getting details, building cart links, and searching policies. No overlap in purpose.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern (create_cart_link, get_product_details, search_catalog, search_shop_policies_and_faqs).

Tool Count5/5

Four tools cover the essential operations for an industrial supplies shop: search, detail, cart link, and policies. The count is well-scoped without being too few or too many.

Completeness5/5

The tool set provides a complete workflow: customers can search and browse catalog, get detailed product info, create a cart link, and look up policies. Missing category listing is documented as an external endpoint.

Available Tools

4 tools
get_product_detailsA
Read-onlyIdempotent
Inspect

Get full details and current stock for one Okun Koneosa product.

Args: product_id: The numeric product id returned by search_catalog.

Returns: JSON with the full product record: id, name, name_raw, sku, ean, brand, category, full description (not truncated), price_gross, price_net, vat_percent, currency, unit, weight_kg, product_url, image_url, plus a freshly checked in_stock / stock_quantity.

Notes: - Stock is read at call time from a separate availability endpoint, so it is more current than the value returned by search_catalog. - Returns {"error": "product_not_found"} for unknown or unpublished ids. Products that are out of stock are unpublished, so a previously valid id can stop resolving. - To let the user buy, pass product_url, or build a cart link with create_cart_link.

ParametersJSON Schema
NameRequiredDescriptionDefault
product_idYesProduct ID from search_catalog

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYesProduct ID — pass to get_product_details or create_cart_link
eanNoEAN/GTIN barcode, when known
skuNoOrdering number used by the shop
nameYesReadable product name
unitNoSelling unit, e.g. 'kpl'
brandNoManufacturer
categoryNo
currencyNo
in_stockYes
name_rawNoSupplier's own spelling, often ALL CAPS
image_urlNoNull for most products — photography is still being collected
price_netYesPrice excl. VAT
weight_kgNo
disclaimerYes
descriptionNoFull description, not truncated
price_grossYesPrice incl. Finnish VAT 25.5%
product_urlYesPublic product page
vat_percentNo
stock_checkedYesTrue if stock was re-read from the availability endpoint
stock_quantityYesUnits available right now
description_truncatedNoTrue if description was cut — use get_product_details
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds valuable context: stock is fetched fresh from a separate endpoint, it returns an error for unknown/unpublished ids, and out-of-stock products become unpublished. No contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear sections: Args, Returns, Notes. It is concise (every sentence adds value) and front-loaded with the primary purpose. No unnecessary information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple retrieval tool with 1 param, annotations, and output schema, the description is complete. It covers behavior, error conditions, sourcing of parameters, and relationship to other tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 1 param with description 'Product ID from search_catalog'. The description clarifies it is numeric and from search_catalog, adding meaning beyond the schema. Since schema coverage is 100%, baseline is 3, but the description provides useful sourcing context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Get full details and current stock for one Okun Koneosa product.' It uses a specific verb ('get') and resource ('product details'), and distinguishes itself from sibling tools like 'search_catalog' (searching) and 'create_cart_link' (building a cart link).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains when to use this tool (to get more current stock than search_catalog) and provides error handling notes. It also mentions that product_id comes from search_catalog, but does not explicitly state when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_catalogA
Read-onlyIdempotent
Inspect

Search the Okun Koneosa product catalog.

Okun Koneosa Oy (okunkoneosa.fi) is a Finnish industrial supplies store in Outokumpu, North Karelia. Around 6500 products: bearings, belts, seals, hydraulics, pneumatics, fasteners, hand tools, protective equipment and machine parts. Everything listed is physically in stock. Prices in EUR, including Finnish VAT 25.5%. Free shipping on orders over 150 EUR.

Args: query: Free-text search — matches product name, ordering number (SKU) or EAN code. Leave empty to browse a category. category_id: Restrict to one category. The category list is available at https://okunkoneosa.fi/api/v1/categories (a plain REST endpoint, not an MCP tool). in_stock_only: True by default. The shop only publishes products that are in stock, so this rarely changes the result. sort: "name" (default), "price_asc", "price_desc" or "newest". limit: Products per page, 1-50 (default 10). page: Page number for paging through larger result sets.

Returns: JSON with: - products: list of products, each with id, name, name_raw, sku, ean, brand, category, price_gross (incl. VAT), price_net, currency, unit, in_stock, stock_quantity, weight_kg, product_url, image_url and a shortened description (description_truncated tells if it was cut). - total, page, per_page, total_pages - disclaimer: prices and availability are confirmed at checkout

Notes: - name is cleaned for reading; name_raw is the supplier's own spelling, useful for exact matching against a supplier catalogue. - image_url is null for most products — the shop is still collecting product photography from suppliers. A missing image does not mean the product is unavailable. - Use get_product_details(id) for the full description and a fresh stock check.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (>= 1)
sortNoname
limitNo1-50
queryNoFree-text search term
category_idNoCategory ID
in_stock_onlyNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
pageYes
totalYesTotal matches across all pages
per_pageYes
productsNo
disclaimerYes
total_pagesYes
suggested_queriesNoAlternative spellings that DO return results — only present when total is 0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond annotations (readOnlyHint, idempotentHint), the description adds behavioral details: stock status, pricing including VAT, free shipping conditions, and notes that image_url is often null. It also mentions that prices are confirmed at checkout.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear sections (Args, Returns, Notes) and front-loaded with the purpose. While slightly verbose, it is organized and each sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the 6 parameters and existing output schema, the description is fully comprehensive. It covers the catalog context, parameter details, return structure, and important behavioral notes, leaving no gaps for the agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description provides detailed explanations for all 6 parameters, including specific options for sort, valid ranges for limit and page, and the behavior of in_stock_only. This adds significant meaning beyond the input schema, which has 67% coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Search the Okun Koneosa product catalog' and provides extensive context about the store and its inventory. It distinguishes itself from sibling tools by explicitly referencing get_product_details for full descriptions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains when to use the tool (e.g., free-text search, browsing by category) and mentions alternatives like get_product_details for full descriptions. However, it does not explicitly say when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_shop_policies_and_faqsA
Read-onlyIdempotent
Inspect

Search Okun Koneosa's shop policies and terms.

Covers delivery terms, privacy policy, terms of service, the consumer right of withdrawal / returns, and company information. Use this instead of guessing when the customer asks about delivery times, shipping costs, returns, warranty or how their data is handled.

Args: query: Finnish keyword, e.g. "palautus", "toimitusaika", "takuu", "toimituskulut". Leave empty to list all sections. limit: Maximum sections to return (1-20, default 5).

Returns: JSON with: - sections: each with page, page_title, heading, content and url - total: how many sections matched - query: the term that was searched

Notes: - Content is split by heading, so you get the relevant paragraph rather than a whole page. Always cite the url so the customer can read the full terms. - These are the shop's own terms. They do not override Finnish consumer law.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax sections (1-20)
queryNoWhat to look for, e.g. 'palautus', 'toimitusaika'

Output Schema

ParametersJSON Schema
NameRequiredDescription
queryNo
totalYes
sectionsNo
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Discloses that content is split by heading to return relevant paragraphs, advises to cite url, and notes that shop terms do not override Finnish law. Annotations are consistent and description adds value beyond them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Well-structured with Args, Returns, and Notes sections. Front-loaded with purpose. Every sentence adds necessary information without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 2 simple parameters, an output schema described in Returns, and annotations, the description provides all needed context including behavior, limitations, and guidance. No gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema covers both parameters with descriptions, and the description adds concrete examples (e.g., 'palautus', 'toimitusaika') and explains behavior when query is empty. Schema coverage is 100% but description enriches usage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states the tool searches Okun Koneosa's shop policies and FAQs. Lists specific topics (delivery, privacy, returns, etc.) and distinguishes from sibling tools like search_catalog which handles products.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says 'Use this instead of guessing when the customer asks about delivery times, shipping costs, returns, warranty or how their data is handled.' Provides concrete usage context and alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources