The Artillerist Artist Intelligence
Server Details
Estimate benchmark-based art commissions and search sourced art and illustration research.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Tool Definition Quality
Average 3.9/5 across 5 of 5 tools scored.
Each tool has a clearly distinct purpose: category browsing, article detail retrieval, latest article listing, search, and commission quote preparation. Even among the article tools, the retrieval modes are distinct enough that an agent would not easily confuse them.
Most tool names follow a readable pattern with 'articles' as a common noun and verbs like get, search, and prepare. Names like latest_articles and articles_by_category break the strict verb_noun convention, but the overall pattern remains predictable.
Five tools is a well-scoped size for a server that combines article research with commission quote preparation. Each tool covers a distinct need and none feel redundant or unnecessary.
Article discovery is well covered with search, category, latest, and detail retrieval, and the quote tool handles validation and endpoint preparation. Minor gaps exist, such as no explicit category listing endpoint and no follow-up execution/payment tool, but agents can work around these.
Available Tools
5 toolsarticles_by_categoryResearch by categoryARead-onlyIdempotentInspect
Find source-backed articles in an art, illustration, buying-guide, or creative-career category by category name or slug.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| category | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover safety (readOnly, idempotent, not destructive), so the description only needs to add behavioral context. It adds 'source-backed' filtering and the name-or-slug input mode, but doesn't describe result shape, pagination, or default limit behavior. 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?
A single front-loaded sentence that states the verb, resource, scope, and input form with no filler. Every word contributes meaning.
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 tool, the description together with annotations and schema covers the essential behavior. It could mention the default limit or returned fields, but those gaps are minor for a category lookup 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 description coverage is 0%, so the description must compensate. It does for the required category parameter by explaining that it accepts a name or slug and listing example categories. The optional limit is largely self-explanatory given schema bounds, though the default limit is not stated.
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 ('Find') with a clear resource ('source-backed articles') and explicit scoping by named categories. It distinguishes itself from siblings like get_article (single article) and search_articles (free-text search) by focusing on category name/slug lookup.
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 this is for category-based research, but it never states when to use this tool over search_articles, get_article, or latest_articles. No exclusions or alternative routing are provided, leaving the agent to infer the right context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_articleGet article metadataARead-onlyIdempotentInspect
Retrieve public metadata and the paid structured API URL for one article by slug. CMS-authorized clients may also request full Markdown directly from this tool.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | ||
| include_content | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, idempotentHint, and destructiveHint. The description adds value by explaining what is returned (metadata and a paid URL) and by disclosing the authorization nuance for full Markdown. No contradiction with the 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 concise sentences with the core purpose front-loaded and the optional capability stated second. Every word earns its place; no redundant or vague phrasing.
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 read-only, idempotent two-parameter retrieval tool, the description covers the main purpose, the key parameter, and the optional behavior, while annotations cover safety. It could be slightly stronger by explicitly naming sibling tools for routing or clarifying what 'paid structured API URL' entails, but nothing critical 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?
With 0% schema description coverage, the description partially compensates: 'by slug' explains the slug parameter, and 'request full Markdown' hints at include_content. However, it does not explicitly map include_content to the parameter or mention the default false, leaving some ambiguity for the agent.
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 action (retrieve), the resource (public metadata and paid structured API URL), and the identifier (slug). It explicitly says 'for one article by slug,' which makes it distinguishable from the sibling list/search tools without ambiguity.
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 phrase 'for one article by slug' gives a clear main use case, and the note about CMS-authorized clients adds a conditional scenario. However, it never mentions alternatives like search_articles or when not to use this tool, so the guidance is clear but not exhaustive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
latest_articlesLatest art researchARead-onlyIdempotentInspect
List newly published art and illustration research with summaries, publication dates, canonical pages, and structured API URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | 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 useful behavioral context by specifying the output fields (summaries, publication dates, canonical pages, structured API URLs). It does not mention ordering or pagination behavior, but 'newly published' conveys the ordering intent.
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 with no filler. It front-loads the core action and resource, then lists return fields efficiently. Every word contributes useful information.
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 with one optional parameter, the description covers purpose, temporal scoping, and return payload. Combined with the schema's limit constraints and the annotations, an agent has enough to call the tool correctly. Minor gaps are the lack of explicit sibling differentiation and pagination/ordering details, but these are not critical here.
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 0%, and the description does not mention the 'limit' parameter at all. The schema provides the property name plus min/max bounds, but the description adds no meaning beyond that. For a low-coverage schema, the description should compensate, and it does not.
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 ('List') and names a distinct resource: newly published art and illustration research. It also enumerates what is returned (summaries, publication dates, canonical pages, structured API URLs), which clearly distinguishes it from sibling tools like search_articles and get_article.
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 phrase 'newly published' implies a recency-based use case, and the tool's name 'latest_articles' reinforces this. However, there is no explicit guidance about when to use this tool versus alternatives such as search_articles or articles_by_category, nor any exclusions or sibling references.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
prepare_commission_quotePrepare commission price estimateARead-onlyIdempotentInspect
Validate inputs for a benchmark-based art or illustration commission estimate covering deliverable, experience, complexity, finish, subjects, usage rights, revisions, rush timing, and expenses. Returns the paid x402 endpoint, current USDC price, dataset version, and exact request body without signing or spending funds.
| Name | Required | Description | Default |
|---|---|---|---|
| rush | No | none | |
| usage | No | personal | |
| finish | No | polished | |
| subjects | No | ||
| revisions | No | ||
| complexity | No | standard | |
| experience | No | established | |
| expenses_usd | No | ||
| commission_type | Yes | A quote_key returned by the free catalog endpoint. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds genuine behavioral detail beyond those hints: it discloses that no signing or spending occurs, and that the tool returns specific artifacts (endpoint, price, dataset version, exact request body). No contradiction with annotations exists.
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 moves from purpose to key inputs to returned artifacts without filler. It is dense but each clause contributes essential information. A slight structural improvement would be splitting the long sentence into purpose and behavior/return sections.
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 there is no output schema and nine parameters, the description does a reasonable job naming the returned values (endpoint, USDC price, dataset version, request body) and the overall scope. Still, it omits failure/validation error behavior, the expected workflow with the free catalog endpoint mentioned in the schema, and further detail on what the request body contains, leaving some context incomplete.
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 only 11% schema description coverage, the description carries most of the parameter-semantics burden. It enumerates the estimation factors in prose ('deliverable, experience, complexity, finish, subjects, usage rights, revisions, rush timing, and expenses'), giving every parameter a domain role. However, it does not explain the meaning or trade-offs of the enum values, units, or how these inputs affect the estimate, so it only partially compensates for the schema's low coverage.
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 names a specific verb ('Validate inputs') and a defined resource ('benchmark-based art or illustration commission estimate'), then states the concrete outputs: paid x402 endpoint, USDC price, dataset version, and request body. It is distinct from the article-related sibling tools, though the description's emphasis on 'validate' slightly downplays that it also prepares/returns an actual request payload.
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 phrase 'without signing or spending funds' implies this is the prepare/validate step before a paid x402 call, which gives some usage context. However, no explicit alternatives, prerequisites, or when-not-to-use conditions are provided; the agent must infer the workflow positioning.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_articlesSearch art researchARead-onlyIdempotentInspect
Find source-backed art, illustration, artist-career, and buying-guide research by topic or question. Returns titles, summaries, publication dates, canonical pages, and structured API URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish readOnly, idempotent, non-destructive behavior, so the description does not need to repeat safety traits. It adds useful behavioral context beyond the annotations by specifying what the response contains: titles, summaries, publication dates, canonical pages, and structured API URLs. It does not cover pagination or relevance ordering, but that is a minor gap given the strong annotation coverage.
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 begins with the action and resource, then lists the return value. Every clause contributes useful information; there is no filler or restatement of the tool name.
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 low complexity (two simple parameters, no nested objects, no output schema), the description covers the main things an agent needs: what can be searched, what results look like, and key return fields. It falls just short of complete because it does not mention limit semantics, default behavior, or empty-result handling, but those are modest omissions for a read-only search 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 description coverage is 0%, so the description must compensate for the lack of parameter documentation. It lightly characterizes 'query' as a topic or question, but gives no guidance on query syntax, expected phrasing, or how results are matched. The 'limit' parameter is not mentioned at all in the description; its numeric bounds are in the schema, but its semantic effect is left for the agent to infer.
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 names a specific verb ('Find'), a concrete resource ('source-backed art, illustration, artist-career, and buying-guide research'), and a clear access mode ('by topic or question'). The 'Returns...' clause also clarifies the deliverable, distinguishing this from direct-fetch siblings like get_article and browse-style tools like articles_by_category.
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 phrase 'by topic or question' gives clear contextual guidance for when this search tool is appropriate, which implicitly separates it from category browsing, latest-article retrieval, and single-article lookup. It does not explicitly name alternatives or state when not to use it, so it lacks the direct exclusionary guidance needed for a 5.
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
Search and commission verified human research review through funded Research Bounties.
Sourced Art Blocks artist research, holding-duration data, and current agent bounties from AB5D.
AI-native art catalogue. Catalogue works, parse provenance, and generate signed RAIs.
Search 2,500+ curated architecture, design, photography and art projects. Free tier, no signup.
Related MCP Servers
- AlicenseBqualityDmaintenanceSearching google, individual websites and scraping their content. Fast and cost-effective. ⚡️98123MIT
- AlicenseBqualityBmaintenanceWebhound is a research engine with an explicit effort control: a prompt defines the investigation and a dollar budget defines how much work it deserves. It returns cited reports or sourced datasets with the working documents, claims, sources, limitations, and evidence pack behind the answer.301,7381MIT
- AlicenseAqualityCmaintenancePaid web research MCP tools for autonomous agents: search, page extraction, citations, and diff monitoring through a live x402 API. Unpaid calls return the Base USDC payment requirement so agents can pay and retry safely.41MIT