ArtistAlly
Server Details
Free fan-convention data for AI agents: dates, registration windows & table costs, US & Canada
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- system-alchemist/artistally-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.3/5 across 4 of 4 tools scored.
Each tool serves a unique purpose: get_convention retrieves detailed convention info, get_coverage provides metadata about tracked regions, list_open_registrations lists current/upcoming registration windows, and search_conventions finds conventions by filters. No overlap in functionality.
All tool names use a consistent verb_noun pattern with lowercase snake_case (e.g., get_convention, list_open_registrations). The naming style is uniform and predictable.
With 4 tools, the set is well-scoped for the domain of convention registration tracking. Each tool is essential and non-redundant, avoiding bloat or deficiency.
The tools cover the full use case: metadata lookup (coverage), searching, detail retrieval, and open registration listing. No obvious gaps for the intended purpose of accessing convention and registration information.
Available Tools
4 toolsartistally_get_conventionGet convention detailsARead-onlyIdempotentInspect
Full profile of one convention by slug: dates, venue and address, website, artist-alley and vendor registration windows/costs/URLs, portfolio and table-share policy, hotel block, transit access, organizer verification, and up to 6 years of attendance/pricing history. Get slugs from artistally_search_conventions or an ArtistAlly event URL.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Convention slug, e.g. "otafest" — the last segment of an ArtistAlly /events/ URL. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint and idempotentHint; description adds value by enumerating returned data (dates, venue, registration windows, history, etc.). No contradictions, but missing details like authentication or rate limits.
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: first lists all data fields, second explains how to get slugs. Front-loaded with no fluff.
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 tool with good annotations and no output schema, the description adequately covers input source and output contents. Missing only minor details like error handling.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with description for slug. Description adds useful example and context (last segment of URL), going beyond schema. Baseline 3, plus extra value.
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?
Description clearly states verb 'get' and resource 'convention details' with specific identifier (slug). Lists many fields returned. Distinguishes from siblings by mentioning how to obtain slugs from the search tool.
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 tells users to get slugs from artistally_search_conventions or an ArtistAlly event URL, indicating prerequisite. However, does not explicitly state when not to use this tool or compare to other siblings beyond the slug source.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
artistally_get_coverageGet coverage mapARead-onlyIdempotentInspect
The regions, states/provinces, and metro areas ArtistAlly tracks, with approved-convention counts. Use it to learn valid region/state/metro filter values for the other tools. Takes no arguments.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and openWorldHint=false, so safety is covered. The description adds behavioral context by specifying the data returned (regions with counts) and the tool's advisory function, enhancing transparency beyond 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?
The description is extremely concise: two sentences conveying purpose, usage, and parameter info with zero wasted words. Front-loaded with the main functionality.
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?
The tool has no output schema, but the description explains what is returned (regions, states/provinces, metro areas with approved-convention counts). It does not detail the output format or pagination, but for a simple reference tool, this is reasonably complete.
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 zero parameters and 100% schema coverage, the schema already documents everything. The description adds clarity by explicitly stating 'Takes no arguments,' which is useful for an 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 states that the tool returns regions, states/provinces, and metro areas with approved-convention counts, and explicitly mentions its use for learning valid filter values for other tools. This clearly differentiates it from sibling tools like get_convention and search_conventions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance: 'Use it to learn valid region/state/metro filter values for the other tools.' This tells when to use it, though it does not discuss when not to use it or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
artistally_list_open_registrationsList open registrationsARead-onlyIdempotentInspect
Artist-alley and vendor/dealer registration windows that are open right now or opening soon, sorted by urgency (soonest close date first). The go-to tool for questions like "which cons can I still apply to?" or "what artist alleys open this month?".
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Which registration kind to include. Default: both. | |
| limit | No | Max entries per section, default 30. | |
| state | No | Two-letter US state or Canadian province code, e.g. "GA", "TX", "ON". | |
| region | No | Coverage region, e.g. "Southeast", "Midwest", "West Coast", "Canada". Valid values come from artistally_get_coverage. | |
| community | No | Filter by community: furry, anime, gaming, or multi (multi-genre). | |
| within_days | No | Look-ahead window in days for "opening soon". Default 30. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true and idempotentHint=true, so behavior is safe. The description adds valuable context: results are sorted by urgency (soonest close date first) and include both currently open and soon-to-open windows within a configurable look-ahead window (within_days). This goes beyond annotations without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences: the first states the function and key sorting, the second gives concrete example questions. Every sentence is informative with no repetition or fluff. It is appropriately sized and 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?
The description explains the tool's purpose, sorting, and use cases. It does not describe the output structure (fields returned per registration), which would be helpful given no output schema. Parameters are well-covered. Overall, it is mostly complete but lacks detail on return values, which is a minor 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?
All 6 parameters have full descriptions in the input schema (100% coverage), so the baseline is 3. The description does not add further explanation of parameters beyond the schema, such as clarifying the interaction of type with other filters or the default values. It meets the minimum but provides no extra semantic value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists open registrations for artist-alley and vendor/dealer windows, with specific verb 'List' and resource 'open registrations'. It distinguishes from sibling tools like artistally_get_convention (single convention) and artistally_search_conventions (searching) by focusing on current/upcoming windows sorted by urgency, and provides example queries that clarify its scope.
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 explicitly identifies this as the go-to tool for questions about which conventions have open applications or open this month, providing clear usage context. However, it does not explicitly state when not to use it or how it compares to siblings like artistally_get_convention for details, so guidance is strong but not exhaustive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
artistally_search_conventionsSearch conventionsARead-onlyIdempotentInspect
Search fan conventions (furry, anime, gaming) across 51 US and Canadian metro areas. Filter by text, community, region, state, metro, or date range. Returns dates, venue, location, registration windows and table costs, plus a canonical ArtistAlly URL per convention.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results, default 20. | |
| metro | No | Metro slug from artistally_get_coverage, e.g. "atlanta", "toronto". | |
| query | No | Free-text match on convention name, venue, or city, e.g. "Otafest" or "Atlanta". | |
| state | No | Two-letter US state or Canadian province code, e.g. "GA", "TX", "ON". | |
| offset | No | Pagination offset, default 0. | |
| region | No | Coverage region, e.g. "Southeast", "Midwest", "West Coast", "Canada". Valid values come from artistally_get_coverage. | |
| community | No | Filter by community: furry, anime, gaming, or multi (multi-genre). | |
| starts_after | No | Only conventions starting on or after this date (YYYY-MM-DD). | |
| starts_before | No | Only conventions starting on or before this date (YYYY-MM-DD). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the description does not contradict these. The description adds behavioral context by specifying the geographic scope and the return fields (dates, venue, registration windows, etc.), which is helpful beyond 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 sentences, front-loaded with purpose and scope, followed by filters and output. No redundant words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description compensates by listing returned fields. It covers all filterable dimensions and geographic scope. Minor missing details like pagination behavior are covered in parameter descriptions, but overall complete for a 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 coverage is 100% with all parameters documented. The description summarizes available filters (text, community, region, etc.) but adds no individual parameter details beyond the schema. 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 clearly states the verb 'Search', the resource 'fan conventions', and the scope 'across 51 US and Canadian metro areas'. It lists filter options and return fields, effectively distinguishing it from siblings like get_convention (single) and list_open_registrations (open only).
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?
While the description implies usage for searching multiple conventions, it does not explicitly state when to use this tool versus alternatives like artistally_get_convention or artistally_list_open_registrations. No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!