netcafe-build
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.
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.
Tool Definition Quality
Average 4.3/5 across 4 of 4 tools scored. Lowest: 3.7/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.
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.
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.
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 toolsbuild_appBuild and deploy a web app from a descriptionARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Optional short app name (defaults to the description). | |
| refine | No | Slug of an app you built earlier (e.g. "u-1a23e679") to modify instead of building from scratch — describe only the change in `description`. | |
| visibility | No | "public" (default, listed in the store) or "unlisted" (URL-only, not in the store). | |
| description | Yes | What the tool should do, in any language. Be specific about inputs/outputs. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
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.
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.
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.
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.
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.
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 jobARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes | The job_id returned when the task was started. |
Output Schema
| Name | Required | Description |
|---|---|---|
| kind | No | |
| error | No | |
| job_id | Yes | |
| result | No | |
| status | Yes | |
| is_terminal | No | |
| next_action | No | |
| structured_result | No | |
| retry_after_seconds | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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 applicationARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Application slug, from list_apps. |
Output Schema
| Name | Required | Description |
|---|---|---|
| name | Yes | |
| slug | Yes | |
| open_url | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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 applicationsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Optional filter, e.g. "office", "research", "chat". |
Output Schema
| Name | Required | Description |
|---|---|---|
| apps | Yes | |
| try_in_browser | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityCmaintenanceDeploys projects straight from an AI agent to Snaphost and returns a public URL, with automatic Dockerfile generation, build/run/log management, and deploy lifecycle control.Last updated5MIT
- Alicense-qualityBmaintenancePublish the website you built with AI to a live public URL — straight from chat, no setup. Enables deploying static sites and updating them with edit tokens.Last updated1MIT
- Flicense-qualityCmaintenanceDeploy full-stack apps from AI. 75+ tools: GitHub/Docker deploy, databases, environments, security, billing.Last updated2
- Alicense-qualityBmaintenanceEnables AI agents to deploy code to any hosting provider by creating PRs, building, and verifying health checks, all from a single natural language command.Last updatedMIT
Your Connectors
Sign in to create a connector for this server.