ai-content-drop
Server Details
Browse 35+ AI video and image models with credit costs, and generate video with an API key.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- aicontentdrop/aicontentdrop
- GitHub Stars
- 0
Tool Definition Quality
Average 4.2/5 across 7 of 8 tools scored. Lowest: 3.6/5.
Most tools target clearly distinct resources and actions: generation lifecycle, account, models, and articles. The only notable overlap is between estimate_credit_cost and list_models, since both provide credit cost information, which could cause an agent to pick the wrong one.
All eight tools follow the same lowercase verb_noun snake_case pattern: estimate_, generate_, get_, list_, search_. The naming is predictable and consistent across the entire set.
Eight tools is well within the ideal range for a server covering a video-generation workflow plus a small article content library. Each tool has a clear role, and none feel redundant or excessive.
The video generation lifecycle is well covered with estimate, generate, poll, list, and account balance tools. However, list_models advertises image models while no generate_image tool exists, making image generation inaccessible; there are also minor gaps like no cancel or delete generation.
Available Tools
8 toolsestimate_credit_costARead-onlyIdempotentInspect
Estimate the credit cost of generating with a specific model, optionally for a batch of several generations.
| Name | Required | Description | Default |
|---|---|---|---|
| model_id | Yes | Model ID, e.g. "kling_3_0" or "veo_3_fast". | |
| quantity | No | How many generations. Defaults to 1. |
Output Schema
| Name | Required | Description |
|---|---|---|
| name | Yes | |
| type | Yes | |
| model_id | Yes | Normalized to underscores. |
| quantity | Yes | |
| credits_each | Yes | |
| credits_total | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds the batch-scoping behavior but does not explicitly clarify that no actual generation occurs; that must be inferred from the word 'estimate'. No contradiction 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that immediately states the core action and scope, then adds the optional batch condition. Every word earns its place, with no redundant or irrelevant detail.
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, full parameter coverage, present output schema, and read-only annotations, the description is sufficient. It communicates the purpose, the required model_id, and the optional quantity semantics that an agent needs to invoke the 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?
Schema description coverage is 100%, so both parameters are already well-documented. The description adds modest semantic context by tying 'specific model' to model_id and 'batch of several generations' to quantity, but it does not provide additional syntax, constraints, or examples beyond the schema.
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 ('estimate') and a clear resource ('credit cost'), scoped to a specific model and optionally a batch. This clearly distinguishes it from sibling tools like generate_video, which actually create content, and list_models, which simply enumerates models.
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 intended use case is implied: call this when you need to know the credit cost before generating with a model. However, the description does not explicitly state when to prefer this over alternatives, nor does it mention that it should be used before generate_video or that it does not trigger generation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_videoAInspect
Start generating an AI video on the authenticated account. Returns a job id immediately — poll get_generation until status is 'completed'. Charges credits only on success. Call estimate_credit_cost first if the cost matters. REQUIRES AN API KEY: add "Authorization: Bearer acd_live_…" to this MCP server; a key is created by a signed-in human at https://aicontentdrop.com/settings/integrations.
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Model ID from list_models, e.g. "kling_3_0". Omitted means the platform picks a suitable one. | |
| prompt | Yes | What the video should show. Detailed prompts produce better results. | |
| duration | No | Length in seconds. Defaults to 5. | |
| image_url | No | Optional public image URL to animate (image-to-video). | |
| aspect_ratio | No | Defaults to 16:9. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | Poll this with get_generation. |
| model | No | |
| status | Yes | |
| next_step | Yes | What to do next, in words, so a model need not infer it. |
| unlimited | No | |
| video_url | No | Null until the render finishes. |
| credits_used | Yes | 0 until the render succeeds — billing is post-deduct. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds substantial behavior beyond annotations: it reveals the async job pattern, the billing condition ('Charges credits only on success'), and the API-key requirement with setup URL. Annotations only state read/write/idempotent/destructive hints; the description enriches the contract with operational and auth details, with 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four sentences, each earning its place: purpose, async workflor, cost guidance, auth requirement. The most important fact leads, and the description is compact with no filler.
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?
For a mutation tool with an output schema and five documented parameters, the description covers everything an agent needs to call it correctly: what happens on invoke, how to track the job, cost implications, and mandatory auth setup. No significant gap.
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 does not add any parameter-specific semantics beyond what the schema already provides, but it doesn't need to; the schema documents all five parameters adequately.
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 opens with a specific verb-resource pair ('Start generating an AI video') and immediately clarifies the asynchronous contract ('Returns a job id immediately — poll get_generation'). It distinguishes itself from the sibling get_generation by naming the polling relationship, so an agent can tell initiation from status-checking without opening other schemas.
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?
Explicitly routes to alternatives: 'poll get_generation until status is completed' names the follow-up tool, and 'Call estimate_credit_cost first if the cost matters' states the condition for using the cost estimation sibling. This gives clear when-to-use and when-to-use-other guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_accountARead-onlyIdempotentInspect
Credit balance and plan for the authenticated account. Check this before a batch of generations. REQUIRES AN API KEY: add "Authorization: Bearer acd_live_…" to this MCP server; a key is created by a signed-in human at https://aicontentdrop.com/settings/integrations.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| note | No | |
| plan | Yes | free | starter | professional | ultra | enterprise_max |
| username | No | |
| credits_remaining | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark it read-only/idempotent/non-destructive, and the description adds a crucial operational requirement: an API key with exact Authorization header instructions and the URL for obtaining it. This goes beyond structured annotations.
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?
Three short sentences, front-loaded with the core purpose, followed by usage timing and only essential auth setup detail. No filler.
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 zero parameters, an output schema, and annotations covering safety, the description provides all necessary context: what the tool returns at a high level, when to call it, and how authentication must be configured.
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?
The tool has zero parameters, so there is nothing for the description to explain about inputs. This matches the baseline for parameterless tools; no semantic gap exists.
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 states a specific resource and content: 'Credit balance and plan for the authenticated account.' It differentiates from siblings like generate_video or get_generation by focusing on account-level billing/plan data, and the usage phrase reinforces its role.
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 gives explicit timing context: 'Check this before a batch of generations.' It does not explicitly name alternative tools or when-not-to-use conditions, but the primary use case is clearly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_articleARead-onlyIdempotentInspect
Fetch the full text of one published article as markdown, by slug.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Article slug, e.g. "kling-vs-sora-comparison". |
Output Schema
| Name | Required | Description |
|---|---|---|
| url | Yes | |
| slug | Yes | |
| title | Yes | |
| markdown | Yes | Full article body. |
| published | 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, so the safety profile is covered. The description adds the 'published' scoping constraint and 'markdown' return format, which is useful but not rich behavioral context. 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence states the action, resource, format, and input in about a dozen words. Every element earns its place, with no repetition or filler.
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?
For a simple one-parameter tool with a full output schema, annotations covering safety, and no nested objects, the description provides everything an agent needs: what to pass (slug), what it returns (full text as markdown), and the published-only constraint. No missing critical context.
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%: the slug parameter is already documented with a description and example. The description's 'by slug' adds no new meaning beyond the schema, so it meets the baseline but does not exceed 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 ('Fetch'), states the resource ('full text of one published article'), specifies the output format ('as markdown'), and identifies the key identifier ('by slug'). This clearly distinguishes it from sibling tools like search_articles or list_generations without needing to open the schema.
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 implies when to use the tool (when you have a slug and need the full published text) but does not explicitly state when not to use it or mention alternatives such as search_articles for finding articles. Usage context is implied, not explicitly routed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_generationARead-onlyIdempotentInspect
Check one generation by id: status ('generating', 'completed', 'failed'), the finished video URL, and credits charged. REQUIRES AN API KEY: add "Authorization: Bearer acd_live_…" to this MCP server; a key is created by a signed-in human at https://aicontentdrop.com/settings/integrations.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The id returned by generate_video. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | Poll this with get_generation. |
| model | No | Model ID, underscored. |
| title | No | |
| status | Yes | generating | processing | completed | failed | timeout |
| video_url | No | |
| created_at | No | |
| credits_used | Yes | Charged only on success — a failed generation is 0. |
| error_message | No | |
| thumbnail_url | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already mark the operation read-only, idempotent, and non-destructive. The description adds genuinely useful behavioral context beyond annotations: the API key requirement, the exact status vocabulary, and the returned fields (video URL, credits charged). No contradiction 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences front-load the core purpose and then provide essential auth setup context. The auth instruction is a bit long but is operationally important for the agent, and there is no redundant filler.
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?
For a single-parameter read-only lookup with an output schema present, the description covers what the tool does, what it returns, and the required authorization. An agent has everything needed to invoke it 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?
Schema description coverage is 100%, with the parameter already documented as 'The id returned by generate_video.' The tool description adds no additional parameter-level meaning beyond what the schema provides, so the baseline 3 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?
States a precise verb ('Check'), a specific resource ('one generation by id'), and the exact data returned: status values, finished video URL, and credits charged. This clearly distinguishes it from list_generations and generate_video.
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 makes clear it is a single-record lookup by id, especially with the schema note that the id comes from generate_video, which implies polling after generation. It does not explicitly name alternatives or state when not to use it, but the context is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_generationsARead-onlyIdempotentInspect
List recent generations on the authenticated account, newest first. REQUIRES AN API KEY: add "Authorization: Bearer acd_live_…" to this MCP server; a key is created by a signed-in human at https://aicontentdrop.com/settings/integrations.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many to return (1-50). Defaults to 10. |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | |
| generations | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnly/idempotent/destructive annotations, the description discloses the API-key requirement, the exact Authorization header format, and how keys are obtained. It also adds newest-first ordering. No contradiction 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no filler: the first front-loads purpose and ordering, the second states the auth requirement and key-creation URL. Every part earns its place.
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?
For a simple read-only list tool with one optional parameter and an output schema, the description combined with annotations and schema leaves no critical gap: what is listed, ordering, auth requirements, and limit behavior are all covered without needing to restate return values.
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?
The schema already provides 100% description coverage for the only parameter, limit, including the allowed range and default. The description adds no parameter-specific meaning, so the baseline of 3 is appropriate.
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 opens with 'List recent generations on the authenticated account, newest first' — a specific verb, resource, scope, and ordering. This clearly distinguishes it from siblings such as get_generation (single resource) and list_models (different resource).
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 clearly establishes the context: list recent generations for the authenticated account, with explicit ordering. However, it does not explicitly name alternatives or exclusions, such as using get_generation for a single specific generation, so it stops 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.
list_modelsARead-onlyIdempotentInspect
List the AI video or image models available on AI Content Drop with their flat credit cost per generation.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Model family to list. Defaults to video. | |
| max_credits | No | Only return models costing this many credits or fewer. |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | No | |
| type | Yes | |
| count | Yes | Models returned after filtering. |
| models | Yes |
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, so the safety profile is covered. The description adds useful behavioral context beyond annotations: the list includes flat credit cost per generation, which is a meaningful output detail an agent would want to know. No contradiction 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that immediately states the action, resource, and key output detail. There is no filler or redundancy; every word earns its place, and the most important information is front-loaded.
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 low tool complexity, two optional parameters fully described in the schema, annotations covering safety/idempotency, and an output schema present, the description is complete enough for correct invocation. Nothing critical is missing for an agent to call this tool properly.
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%, and both parameters (type with enum/default, max_credits) are adequately documented in the schema. The description does not add extra semantic detail for parameters, but with full schema coverage the baseline of 3 is appropriate.
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 a specific verb ('List'), a precise resource ('AI video or image models available on AI Content Drop'), and adds the key detail that each model has a flat credit cost per generation. This differentiates it from sibling tools like list_generations (list generations, not models) and estimate_credit_cost (estimate costs, not list models).
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 implies when to use this tool — when you need to see what models are available and their per-generation credit costs. However, it does not explicitly mention alternatives, conditions, or when not to use it. Given the siblings, explicit routing would strengthen this, but the intent is reasonably clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_articlesARead-onlyIdempotentInspect
Search AI Content Drop's published guides and model comparisons about AI video generation, prompting, and ad creative.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum results (1-25). Defaults to 10. | |
| query | Yes | Keywords, e.g. 'kling vs sora' or 'ugc hooks'. |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | |
| query | Yes | |
| results | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover the safety profile with readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds content scope but no additional behavioral traits such as pagination, rate limits, or result ordering, so it stays at a baseline 3.
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 with no filler. It packs the verb, resource scope, and topic coverage efficiently, making it easy for an agent to parse quickly.
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?
For a simple search tool with two fully documented parameters, safety annotations, and an output schema, the description is largely sufficient. It is slightly incomplete in that it doesn't hint at the recommended flow of searching then fetching an article via get_article, but nothing essential to invoking the tool correctly is missing.
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%: query and limit are both documented with examples and constraints. The description adds no parameter-specific meaning beyond what the schema already provides, so the baseline 3 is appropriate.
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 and resource: 'Search AI Content Drop's published guides and model comparisons' about AI video generation, prompting, and ad creative. It clearly differentiates from generation and listing tools, though it does not explicitly distinguish itself from the closely related get_article sibling.
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 implies usage when discovering published content by keyword, such as 'kling vs sora', but it provides no explicit when-to-use or when-not-to-use guidance. It does not mention alternatives like get_article for retrieving a specific article by ID.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Generate images, video, music, voice and 3D through one API. 30 tools, 200+ models.
Generate text, images, speech, music, and video with any AI model, from one credit balance.
61One API for 100+ AI video, image, music and speech models.
Run 100+ AI models — image, video, audio, 3D — through one API with pay-per-use billing.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceGenerate AI images and videos from Claude, Cursor or any MCP client: 48+ models on one account (Flux 2, Nano Banana 2, Seedream 5, Kling V3, Seedance 2.5, Veo 3.1), with the exact cost in credits returned on every call.MIT
- AlicenseBqualityBmaintenanceExecution control layer for AI agents - Reserve, execute, burn/refund pattern for media generation162MIT

Createya MCP & APIofficial
AlicenseNot gradedqualityDmaintenanceEnables AI agents and developers to generate images, videos, audio, and text using 100+ models via MCP or REST with a single API key.4MIT- AlicenseAqualityBmaintenanceHosted multi-model AI media + chat MCP server. Generates images, video, audio, face-swaps and talking-avatars, and chats across 300+ models (Claude, GPT, Gemini, DeepSeek…) - all from one balance and one API key.16MIT