Skip to main content
Glama

Server Details

Search the Final POS REST API documentation.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
Final-Commerce/final-pos-mcp
GitHub Stars
0
Server Listing
Final POS MCP

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 DescriptionsB

Average 3.4/5 across 5 of 6 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct aspect of API documentation: listing APIs, retrieving endpoints, endpoint details, full description, security schemes, and search. No functional overlap.

Naming Consistency4/5

Most tools follow a consistent verb_noun pattern (list-apis, get-endpoints, etc.), but 'search' is a single verb, slightly breaking the pattern. Overall naming is clear and predictable.

Tool Count5/5

With 6 tools, the server is well-scoped for its purpose—comprehensive enough without being overwhelming. The number is appropriate for a documentation explorer.

Completeness4/5

The set covers listing APIs, endpoint details, full spec, security, and search. Minor gaps like endpoint filtering or version comparison exist, but core workflows are well-covered.

Available Tools

6 tools
get-endpoint-infoA
Read-onlyIdempotent
Inspect

Get comprehensive information about specific endpoint including parameters, security, and examples

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesAPI name
pathYesEndpoint path (e.g. /api/v1/users)
methodYesHTTP method (GET, POST, PUT, DELETE, etc.)
versionNoAPI version (required when multiple APIs share the same name but differ by version)
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the description adds value by specifying the content of the response (parameters, security, examples). No contradictions.

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?

Single sentence that is front-loaded with the core purpose. No unnecessary words.

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

Completeness4/5

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

Given no output schema, the description explains what the tool returns. It is fairly complete for a simple info retrieval tool, though could mention that it is read-only or idempotent (already in annotations).

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

Parameters3/5

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

Schema coverage is 100%, so parameters are already well described in the schema. The description does not add additional meaning beyond the schema.

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?

Description clearly states it retrieves comprehensive information about a specific endpoint, including parameters, security, and examples. It distinguishes from siblings like get-endpoints (which likely lists multiple endpoints) and get-full-api-description.

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

Usage Guidelines3/5

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

Implied usage for getting details on one specific endpoint, but no explicit guidance on when to use this vs alternatives like get-endpoints or search. No when-not or exclusions provided.

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

get-endpointsB
Read-onlyIdempotent
Inspect

Get all endpoints for a specific API

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesAPI name
versionNoAPI version (required when multiple APIs share the same name but differ by version)
Behavior3/5

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

Annotations (readOnlyHint=true, idempotentHint=true, destructiveHint=false) already indicate the tool is safe and idempotent. The description adds no behavioral context beyond 'get all', which is consistent but does not disclose traits like pagination or response structure.

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 a single, front-loaded sentence with no wasted words. It achieves conciseness but could be slightly expanded to include output expectations without losing efficiency.

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

Completeness2/5

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

The description lacks information about the output (no output schema) and does not explain what 'endpoints' includes (e.g., IDs, methods, paths). The agent cannot predict the response format, which hinders usage. With no output schema, the description should compensate but does not.

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

Parameters3/5

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

Schema description coverage is 100% (both parameters have clear descriptions). The tool description adds no additional parameter info, so the agent relies solely on the schema. Baseline score of 3 is appropriate.

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 'Get all endpoints for a specific API' clearly states the action (get) and resource (endpoints for a specific API). It distinguishes from sibling tools like list-apis (which lists APIs) and search (generic), making selection straightforward.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives like get-endpoint-info or get-full-api-description. The description does not mention context, prerequisites, or limitations, leaving the agent without decision support.

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

get-full-api-descriptionB
Read-onlyIdempotent
Inspect

Get the complete OpenAPI description

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesAPI name
versionNoAPI version (required when multiple APIs share the same name but differ by version)
Behavior3/5

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

Annotations readOnlyHint=true, idempotentHint=true, destructiveHint=false already indicate safety. Description adds no extra behavioral context (e.g., response size, auth). No contradictions detected.

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?

Single sentence with no wasted words. Front-loaded purpose. Appropriate length for a simple read tool.

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

Completeness3/5

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

No output schema and description does not explain the return format or any constraints. Adequate for a straightforward read tool but lacks completeness regarding the result.

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

Parameters3/5

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

Schema coverage is 100% with both parameters described. Description adds no additional meaning beyond what the schema provides, so baseline score of 3 applies.

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

Purpose4/5

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

The description 'Get the complete OpenAPI description' clearly states the action and resource, but does not differentiate it from sibling tools like get-endpoint-info or get-endpoints, leaving ambiguity about what 'complete' entails.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives such as get-endpoint-info or get-endpoints. The description lacks context for appropriate invocation.

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

get-security-schemesB
Read-onlyIdempotent
Inspect

Get the security schemes for a specific API

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesAPI name
versionNoAPI version (required when multiple APIs share the same name but differ by version)
Behavior2/5

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

Annotations already convey read-only, idempotent, non-destructive behavior. The description adds no additional behavioral context beyond the obvious, such as what the returned security schemes contain or how pagination works.

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 a single, front-loaded sentence with no unnecessary words. Every part is functional.

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

Completeness3/5

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

Given the absence of an output schema, the description could have hinted at return structure or cardinality. It also does not mention the version parameter's requirement scenario, leaving some gaps.

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

Parameters3/5

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

The input schema covers both parameters with descriptions, so schema_description_coverage is 100%. The description does not add extra meaning beyond what the schema already provides, so baseline score applies.

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 the action (Get) and resource (security schemes) with a qualifier (for a specific API). It is distinct from sibling tools like get-endpoints or list-apis, which do not involve security schemes.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites, exclusions, or contexts where other tools would be more appropriate.

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

list-apisB
Read-onlyIdempotent
Inspect

Lists available APIs with their context and purpose

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number
limitNoNumber of APIs per page. Default is 300
filterNoAPI name (or part of it)
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the description does not need to reiterate safety. The description adds no behavioral details beyond 'lists', but does not contradict annotations.

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?

Single sentence, concise, and front-loaded with the key action. No wasted words, but could be more structured for readability.

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

Completeness2/5

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

No output schema is provided, so the description should clarify what is returned. 'With their context and purpose' is too vague. Lacks details on pagination, fields, or how results are structured.

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

Parameters3/5

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

Schema coverage is 100% with descriptions for all three parameters. The description adds no additional parameter semantics beyond what the schema provides, so baseline 3 is appropriate.

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

Purpose4/5

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

The description 'Lists available APIs with their context and purpose' clearly indicates the tool's verb and resource. It distinguishes from sibling tools like 'get-endpoints' which focus on endpoints rather than APIs themselves. However, 'context and purpose' is slightly vague.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives such as 'search' or 'get-full-api-description'. The description does not mention use cases or exclusions.

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!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.