Skip to main content
Glama

Server Details

MCP server for meme generation, template search, caption rendering, and AI meme creation.

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 3.8/5 across 8 of 8 tools scored. Lowest: 3.1/5.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct operation: template-based captioning vs. upload-based, static vs. GIF generation, account creation, quota checking, template search, and idea generation. No overlapping purposes.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern (e.g., caption_template, search_templates, get_ai_quota). No naming conflicts or mixed conventions.

Tool Count5/5

8 tools is well-scoped for a meme generation server: covers creation, account management, quota, and template discovery without being bloated or too sparse.

Completeness5/5

The tool surface covers the full meme generation workflow: template search, idea generation, captioning (template and upload), GIF generation, account creation, and quota management. No obvious gaps.

Available Tools

8 tools
caption_templateCaption templateAInspect

Render a hosted meme from a known template slug and caption slots. Watermark customization is applied only for premium callers.

ParametersJSON Schema
NameRequiredDescriptionDefault
apiKeyNoOptional agent or developer API key for higher limits or premium watermark control.
captionsYesCaption slot payloads or plain strings, ordered to match the template.
watermarkNoOptional watermark override payload.
visibilityNoWhether the created meme should be publicly shareable.
templateSlugYesKnown Memesio template slug to caption.
Behavior4/5

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

Annotations establish the write/mutation nature (readOnlyHint:false, destructiveHint:false). The description adds valuable behavioral context about premium tier restrictions on watermark customization not present in annotations, which is critical for correct invocation expectations.

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?

Two sentences, zero waste. First sentence front-loads the core purpose (render meme), second sentence provides critical usage constraint (premium watermark). Every word earns its place.

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?

Adequate given comprehensive schema coverage and annotations, but gaps remain: no mention of return value (URL/ID?) despite no output schema, and no description of the nested watermark object's behavior beyond the premium constraint.

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 baseline is 3. The description mentions 'template slug' and 'caption slots' which semantically align with the required parameters, but adds minimal new information beyond what the schema already provides.

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?

Excellent specificity: 'Render' (verb), 'hosted meme' (resource), 'known template slug' (input), and 'caption slots' (input). The phrase 'hosted meme from a known template slug' clearly distinguishes it from sibling caption_upload (custom images) and implies template-based operation vs generate_meme.

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?

Contains one usage constraint ('Watermark customization is applied only for premium callers'), but lacks explicit guidance on when to choose this over caption_upload or generate_meme. Sibling differentiation is implied rather than stated.

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

caption_uploadCaption uploadAInspect

Upload an image by URL or base64, render caption slots on top of it, and return a hosted meme. Watermark customization is applied only for premium callers.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleNoOptional title for the generated hosted meme page.
apiKeyNoOptional agent or developer API key for higher limits or premium watermark control.
captionsYesCaption objects describing text and layout.
imageUrlNoRemote PNG, JPEG, or WebP image URL to caption.
mimeTypeNoRequired MIME type when imageBase64 is used.
watermarkNoOptional watermark override payload.
visibilityNoWhether the created meme should be publicly shareable.
imageBase64NoBase64-encoded image bytes when not using imageUrl.
Behavior4/5

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

Annotations establish non-idempotent write operation (readOnlyHint:false, idempotentHint:false). Description adds valuable behavioral constraint that watermark customization is 'premium callers' only, and clarifies the creation of a hosted resource. Could further clarify image persistence duration or mutual exclusivity of URL/base64 inputs.

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?

Two sentences with zero waste: first sentence establishes complete core functionality; second sentence delivers critical premium-tier behavioral constraint. Front-loaded and appropriately sized.

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?

Sufficient for an 8-parameter tool with comprehensive schema coverage. Mentions return type ('hosted meme') compensating for missing output schema, and covers premium behavior. Lacks explicit mutual exclusivity note for image inputs and output format details.

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 100% coverage establishing baseline of 3. Description adds crucial semantic clarity that imageUrl and imageBase64 are alternative input methods ('by URL or base64'), and reveals the premium-only restriction on watermark customizations not evident in schema alone.

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?

Clear specific verbs (upload, render, return) with explicit resource (image) and output (hosted meme). Distinguishes from sibling 'generate_meme' by emphasizing the upload-and-caption workflow versus generation from scratch.

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?

Implies usage scenario (uploading custom images vs templates) by specifying 'URL or base64' input, but provides no explicit guidance on when to choose this over 'caption_template' or 'generate_meme', and no prerequisites or exclusion criteria.

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

create_agent_accountCreate agent accountAInspect

Create an autonomous Memesio agent account and mint its first API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesHuman-friendly agent name shown in Memesio.
handleYesUnique lowercase handle to claim for the new agent account.
localeNoPreferred locale tag such as en or en-US.
websiteUrlNoPublic homepage or profile URL for the agent.
descriptionNoShort description of what the agent does.
stylePresetNoPreferred default style preset for future meme generations.
systemPromptNoDefault instruction block the agent wants stored with its account.
watermarkTextNoPreferred watermark text for premium account defaults.
Behavior4/5

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

Adds valuable behavioral context beyond annotations by specifying 'mint its first API key' as a side effect. Mentions 'autonomous' which characterizes the agent type. Does not contradict annotations (readOnlyHint=false aligns with 'Create'). Could improve by mentioning handle uniqueness constraints or the non-idempotent behavior flagged in annotations.

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 appropriately front-loaded. Every word earns its place: 'autonomous' distinguishes agent type, 'Memesio' identifies the platform, and 'mint its first API key' reveals a critical side effect. No redundancy or waste.

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 the rich annotations (openWorldHint, idempotentHint) and 100% schema coverage, the description adequately covers the tool's purpose and side effects without needing to document return values (no output schema present). Could benefit from noting the non-idempotent behavior, but the annotation covers this adequately.

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% (8/8 parameters documented), so the baseline score applies. The main description adds no parameter-specific guidance, but with complete schema coverage, it doesn't need to. The 'mint API key' phrase implies credential generation but doesn't describe input parameters.

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 uses specific verb 'Create' with resource 'Memesio agent account' and adds the distinct secondary action 'mint its first API key'. This clearly distinguishes it from sibling content-generation tools like generate_meme or search_templates.

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?

Provides no guidance on when to use this versus alternatives, prerequisites (e.g., unique handle requirements), or warnings about the non-idempotent nature implicit in the annotations. The description states what it does but not when an agent should invoke it.

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

generate_gifGenerate GIFAInspect

Render a downloadable animated meme GIF from an approved GIF template. Supports clip timing, FPS, width, caption text, caption size, and caption x/y placement.

ParametersJSON Schema
NameRequiredDescriptionDefault
fpsNoOutput playback FPS.
tagsNoOptional lowercase tags.
titleNoFilename/title hint for the generated GIF.
apiKeyNoOptional agent or developer API key for higher free-tier limits.
gifSlugYesApproved GIF template slug from search_templates.
startMsNoClip start time in milliseconds.
widthPxNoOutput width in pixels.
captionsNoCaption objects. Use x/y to control where each caption goes.
durationMsNoClip duration in milliseconds.
returnBase64NoReturn base64 and dataUrl in the MCP response. Defaults to true for MCP.
Behavior3/5

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

Annotations provide no destructive hint (false) and not read-only, so tool implies creation. Description adds 'downloadable' but doesn't disclose behavior like async processing, error states, or rate limits. No contradictions with annotations.

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 front-loaded purpose and efficient list of supported features. No wasted words.

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 10 parameters and no output schema, description covers core features but omits information about return format (e.g., URL, file), error handling, or processing time. Adequate but not fully complete.

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 well-documented. Description adds a summary of key capabilities but no additional nuance beyond what the schema already provides. Baseline 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?

Clearly states verb 'Render', resource 'animated meme GIF', and source 'approved GIF template'. Lists specific capabilities (clip timing, FPS, width, captions) and distinguishes from siblings like search_templates and generate_meme.

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?

Implies prerequisite to use search_templates for an approved slug but lacks explicit guidance on when to use this tool vs generate_meme or other siblings. No when-not or alternative descriptions.

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

generate_memeGenerate memeBInspect

Select an existing meme template, generate captions, and return one or more meme variants.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNoGeneration mode. Only template-based meme generation is supported.
toneNoCaption tone. Use this to steer the humor style, for example absurd or corporate.
apiKeyYesAgent or developer API key for AI meme generation.
promptYesPrompt describing the meme concept to generate.
toneCuesNoOptional extra style cues such as dry, playful, or bunny-coded.
rewriteNoteNoOptional rewrite direction that pushes the joke toward a specific flavor.
variantCountNoHow many meme variants to generate in one call. Defaults to 3 for MCP so results can use visibly different template types.
allowHeuristicFallbackNoWhether Memesio may fall back to heuristic captions if OpenAI captioning is unavailable. Defaults to false for keyed API/MCP calls.
Behavior2/5

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

Annotations show it is not read-only, idempotent, or destructive, but the description adds little beyond that. It doesn't disclose rate limits, authentication details, or side effects like template selection behavior.

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 of 16 words, front-loaded with main action. Efficient but could be slightly more detailed without becoming verbose.

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?

With 8 parameters, high schema coverage, and no output schema, the description is too sparse. It omits details on how templates are selected, response format, and error handling.

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 baseline is 3. The description does not add extra meaning to parameters; it repeats the general purpose.

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 selects a template, generates captions, and returns variants. It distinguishes from siblings like generate_gif (GIFs) and caption_template (captioning). The verb 'generate' and resource 'meme' are specific.

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 explicit guidance on when to use this tool vs alternatives. No mention of when-not-to-use or prerequisites. Sibling tool names are provided but no comparative guidance.

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

get_ai_quotaGet AI quotaA
Read-onlyIdempotent
Inspect

Read the keyed AI quota before deciding whether to spend a generation run.

ParametersJSON Schema
NameRequiredDescriptionDefault
apiKeyYesAgent or developer API key to inspect keyed AI quota.
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, establishing safety. The description adds valuable domain context that this quota specifically governs 'generation runs,' helping the agent understand what resource is being tracked, though it omits technical details like rate limits or error states.

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, efficient sentence of 12 words. Information is front-loaded with the action ('Read'), followed by the specific use case ('before deciding...'), with zero redundancy or filler.

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?

Appropriately complete for a single-parameter read operation with rich annotations. It explains the business purpose (pre-generation checking) and leverages the schema for parameter details. Lacking output schema, it could briefly characterize the expected quota format, but the omission is minor given the tool's narrow scope.

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 coverage, the parameter is fully documented in the schema itself. The description uses the phrase 'keyed AI quota' which aligns with the 'apiKey' parameter semantics but does not add substantial syntax or format guidance beyond what the schema provides.

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 states a specific verb ('Read'), resource ('keyed AI quota'), and scope, clearly positioning this as a utility for checking limits rather than consuming them. The phrase 'spend a generation run' implicitly distinguishes it from sibling generation tools like generate_meme.

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?

Provides clear temporal guidance ('before deciding whether to spend') indicating this should be called as a precondition check prior to generation operations. However, it does not explicitly name the specific sibling tools (e.g., generate_meme) to use or avoid based on the result.

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

get_template_ideasGet template ideasB
Read-onlyIdempotent
Inspect

Turn a prompt into ranked meme template ideas.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of ranked template suggestions to return.
apiKeyYesAgent or developer API key for keyed template-idea access.
promptYesDescription of the joke, use case, or concept to match with templates.
trendSignalsNoOptional trend or context hints to bias template suggestions.
Behavior3/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, covering safety and repeatability. The description adds the behavioral trait that results are 'ranked' (ordered by relevance), which annotations do not capture. It does not mention rate limits, authentication requirements beyond the apiKey parameter, or cache 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 a single, efficient sentence of seven words. It is front-loaded with the core transformation concept and contains no redundant or filler text. Every word earns its place.

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 simple parameter structure (4 flat parameters, 100% schema coverage) and presence of annotations, the description is minimally adequate. However, with no output schema provided, the description could have elaborated on what constitutes a 'template idea' (e.g., IDs, names, scores) to complete the mental model.

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 baseline is 3. The description references 'prompt' which aligns with the primary input parameter, but adds no additional semantic context about the limit, apiKey, or trendSignals parameters beyond what the schema already provides.

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 uses specific verbs ('Turn...into') and clearly identifies the resource ('ranked meme template ideas'). It establishes the domain (meme) and output characteristic (ranked), though it does not explicitly differentiate from the sibling search_templates tool.

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 explicit guidance on when to use this tool versus alternatives like search_templates or generate_meme. There are no prerequisites, exclusions, or conditional usage patterns mentioned.

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

search_templatesSearch templatesA
Read-onlyIdempotent
Inspect

Search the public meme template library before committing to a format. Use mediaType=gif or mediaType=all before calling generate_gif.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoSearch query for meme templates.
tagNoOptional template tag to filter by.
modeNoSearch mode to use for template lookup.
sortNoSort order for discovered templates.
queryNoAlternate query field if the client prefers query over q.
pageSizeNoMaximum number of template results to return.
mediaTypeNoFilter template media type. Defaults to image for compatibility.
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, and openWorldHint=false. The description adds the behavioral context that this is a preliminary, non-destructive search, but does not introduce significant new behavioral traits beyond what annotations provide.

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 short, front-loaded sentences. Every sentence adds value: the first states the core action, the second gives a concrete usage tip. No fluff or redundant information.

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?

The description provides sufficient high-level context for a search tool with 7 parameters fully described in the schema. It explains the tool's role in a broader workflow. Minor gap: does not specify what happens with results (e.g., it's a search, likely returns template list), but this is acceptable given no output schema and the task context.

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%, with all 7 parameters already documented in the input schema. The tool description adds no additional parameter details, so the baseline score of 3 applies as per the rubric.

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 verb 'Search' and the resource 'public meme template library'. It distinguishes from siblings by explicitly mentioning it's a step before 'generate_gif', giving specific context. The purpose is immediately clear and actionable.

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 tells the agent when to use this tool: 'before committing to a format' and provides a direct parameter hint: 'Use mediaType=gif or mediaType=all before calling generate_gif'. While it doesn't explicitly state when not to use it, the context is strong and aligned with sibling tools.

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