Skip to main content
Glama

Server Details

Deploy a live web app from one sentence. build_app + poll to a public HTTPS URL you own.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mario03690/ai-netcafe
GitHub Stars
0
Server Listing
ai-netcafe

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.3/5 across 4 of 4 tools scored. Lowest: 3.7/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct role: build_app creates a new app, check_job polls a job's status, get_app retrieves a single app's details, and list_apps enumerates hosted apps. There is no meaningful overlap between them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in lowercase with underscores: build_app, check_job, get_app, list_apps. This is a predictable and uniform naming scheme.

Tool Count5/5

4 tools is well within the ideal range for a focused build-and-manage service. The count is sufficient to cover the core actions without redundancy.

Completeness4/5

The tool surface covers the main lifecycle: create (build_app), check status (check_job), read (get_app), and list (list_apps). Minor gaps exist, such as no update/delete operations for apps, but these are not critical for the server's stated purpose of generating and hosting small web tools.

Available Tools

4 tools
build_appBuild and deploy a web app from a descriptionA
Read-onlyIdempotent
Inspect

Turn one plain-language description into a LIVE single-page web tool: code is generated, deployed to managed hosting with HTTPS, and listed — you get the public URL in ~1-2 minutes. Best for tool-style apps: calculators, converters, checklists, timers, generators, small games. Async — poll with check_job.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoOptional short app name (defaults to the description).
refineNoSlug of an app you built earlier (e.g. "u-1a23e679") to modify instead of building from scratch — describe only the change in `description`.
visibilityNo"public" (default, listed in the store) or "unlisted" (URL-only, not in the store).
descriptionYesWhat the tool should do, in any language. Be specific about inputs/outputs.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior1/5

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

The description directly contradicts the annotations. It says 'code is generated, deployed... you get the public URL' which is clearly a mutating, non-read-only operation, yet annotations declare readOnlyHint=true and idempotentHint=true. This is a serious inconsistency that misleads an agent about side effects.

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 two sentences: the first packs the core value proposition and mechanics, the second hones in on fitting use cases and async behavior. Every clause earns its place, with no filler or repetition of schema details.

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 that an output schema exists (covering return values) and the description covers what the tool does, the expected output (public URL), deployment details, time-to-result, and the async handoff to check_job, this is complete for a build tool. The only major gap is the annotation contradiction, but that is scored separately.

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%, so the baseline is 3. The description adds minor value by emphasizing that the description parameter should be 'specific about inputs/outputs' and notes language flexibility, but it does not elaborate on the other parameters (name, refine, visibility) in a way that goes beyond the schema. It meets the baseline without exceeding it.

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 uses a specific verb-resource structure: it turns a plain-language description into a live single-page web tool, with details about generation, deployment, HTTPS, listing, and public URL. This clearly distinguishes it from siblings like check_job, get_app, and list_apps, which handle job status, retrieval, and listing.

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?

It states 'Best for tool-style apps' and gives examples, providing clear context for when to use the tool. It also notes the async nature and directs users to poll with check_job, which is an explicit alternative. However, it does not explicitly state when NOT to use it (e.g., complex multi-page apps), so it falls short of a 5.

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

check_jobCheck a long-running jobA
Read-onlyIdempotent
Inspect

Get the status or result of a job started by deep_research, translate_pdf, or make_slides. Poll every 15-30 seconds until status is "done" or "error". While work is pending, follow retry_after_seconds and next_action; when complete, prefer structured_result when present.

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYesThe job_id returned when the task was started.

Output Schema

ParametersJSON Schema
NameRequiredDescription
kindNo
errorNo
job_idYes
resultNo
statusYes
is_terminalNo
next_actionNo
structured_resultNo
retry_after_secondsNo
Behavior5/5

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

Annotations already mark the tool as read-only, idempotent, and non-destructive. The description adds valuable behavioral context: polling cadence, retry_after_seconds/next_action handling, and preference for structured_result. It doesn't contradict annotations and enriches the agent's understanding of tool behavior.

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 two sentences long and densely packed with actionable information. It front-loads the core purpose, then provides precise polling and completion-handling instructions. No wasted words.

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 simple single-parameter interface, rich annotations, and presence of an output schema, the description fully covers operational context. It explains polling behavior, terminal states, and how to handle pending vs. completed jobs. There are no critical gaps for an agent to use this tool correctly.

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?

With 100% schema description coverage, the single parameter job_id is already well documented in the schema. The description adds no additional parameter semantics beyond referencing how jobs are started. Baseline of 3 is appropriate since the schema carries the semantic weight.

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 tool's function: getting the status or result of a job started by specific tools. It distinguishes itself from the sibling tools (which are app-related) by focusing on long-running job polling. The verb 'get' and resource 'job status/result' are specific and unambiguous.

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?

The description provides explicit when-to-use guidance: for jobs started by deep_research, translate_pdf, or make_slides. It also gives concrete polling instructions (every 15-30 seconds until done/error) and how to handle pending vs. complete states. This is clear operational guidance beyond merely saying 'use this to check jobs'.

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

get_appGet details of one applicationA
Read-onlyIdempotent
Inspect

Full details of one hosted application: what it does, how to use it, measured benchmark scores, source repository, and the URL a human can open to run it.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesApplication slug, from list_apps.

Output Schema

ParametersJSON Schema
NameRequiredDescription
nameYes
slugYes
open_urlNo
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description goes beyond annotations by specifying the informational content returned (use instructions, benchmark scores, repository, URL), which helps an agent anticipate the response shape and utility. It doesn't contradict any annotation.

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 that conveys the tool's purpose and enumerates specific content types without any filler. Every phrase earns its place, making it highly scannable for an agent.

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?

With one parameter, a rich output schema (indicated by has_output_schema=true), and strong annotations, the description sufficiently explains what the tool does and what it returns. No significant contextual gaps remain.

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 the slug parameter described as 'Application slug, from list_apps.' The tool description adds no additional parameter details beyond the schema, so the baseline 3 for high schema coverage 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 begins with 'Full details of one hosted application', which is a specific verb+resource formulation. It further enumerates the exact detail types (what it does, how to use, benchmarks, source repo, URL), clearly distinguishing it from sibling tools like list_apps or build_app.

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 singular 'one hosted application' implies this is for retrieving a single app's details, while the schema's parameter description 'from list_apps' reinforces the typical workflow. However, the tool description itself doesn't explicitly mention alternatives or when not to use it, though the intent is clear from context.

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

list_appsList hosted open-source AI applicationsA
Read-onlyIdempotent
Inspect

List the open-source AI applications hosted and ready to run at AI NetCafé (ainetcafe.com). Each one normally requires local setup (Docker/Python + your own model API key); here they run pre-configured. Use this to find a tool for a task like translating a PDF with formulas intact, generating a PowerPoint file, polishing an academic paper, or running an autonomous research report. Do not call this first when the request already clearly matches compare_models, translate_pdf, deep_research, or make_slides; call that task tool directly.

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryNoOptional filter, e.g. "office", "research", "chat".

Output Schema

ParametersJSON Schema
NameRequiredDescription
appsYes
try_in_browserNo
Behavior4/5

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

Annotations already declare read-only, idempotent, and non-destructive behavior. The description adds valuable context that these apps normally require local setup but are pre-configured here, which informs the agent about the execution environment. It does not describe return format, but output schema exists, so this is acceptable.

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 concise yet information-dense: it states purpose, adds environmental context, gives task examples, and ends with explicit exclusions. Every sentence contributes value, with no wasted words.

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 tool's simplicity, one optional parameter, and the presence of annotations and output schema, the description is fully complete. It covers purpose, usage examples, and explicit alternatives, leaving no critical gaps for an agent to select and invoke the tool.

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% (one parameter 'category' with its own description). The tool description does not mention the parameter, but the schema already fully explains it. Per rubric, baseline is 3 when schema covers parameters; the description adds no extra parameter semantics.

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 tool lists open-source AI applications hosted at AI NetCafé, with a specific verb ('List') and resource ('open-source AI applications'). It also distinguishes from sibling tools (build_app, check_job, get_app) by focusing on listing ready-to-run apps, and explicitly names other task-specific tools to call directly.

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?

The description provides explicit guidance: 'Use this to find a tool for a task like...' with concrete examples, and directly states when NOT to use it: 'Do not call this first when the request already clearly matches compare_models, translate_pdf, deep_research, or make_slides; call that task tool directly.' This gives clear when-to-use and when-not-to-use context.

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.