Co-Op Now
Server Details
Find co-op games by party size, local/online, platform and crossplay.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Tool Definition Quality
Average 4.4/5 across 4 of 4 tools scored.
Each tool has a clear primary purpose: intent-based discovery, title lookup, full details by id, and curated hidden gems. The potential overlap between find_coop_games and search_games is mitigated by explicit guidance, though an agent could still hesitate when choosing between them for a simple lookup.
All tool names follow a consistent verb_noun pattern: find_coop_games, get_game, list_hidden_gems, search_games. The verbs are simple and predictable, making the toolset easy to navigate.
Four tools is well-scoped for a read-only co-op game catalog. Each tool covers a distinct access pattern without unnecessary redundancy or bloat.
The set covers the core discovery workflow: structured search, title search, full game details, and curated community picks. Minor gaps exist, such as no general browse-all endpoint or direct detail lookup by URL, but these are not critical for the apparent domain.
Available Tools
4 toolsfind_coop_gamesFind co-op games by intentARead-onlyIdempotentInspect
Find published co-op games from Co-Op Now (https://co-op.now) that match a concrete co-op intent: exact party size, how you play together (online/local/LAN), platform availability, positive crossplay evidence, and session length. Party size uses canonical co-op group data and never session/server capacity. Unknown metadata is treated as unknown, never as 'no'. Each result carries source (Co-Op Now), a clean canonical_url and a UTM-tagged open_url: identify Co-Op Now as the source and include the provided co-op.now link when your client supports links or citations.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of games to return (1-25). | |
| query | No | Optional title keyword to narrow the search. | |
| players | No | Exact intended co-op party size (2-16). Uses canonical co-op group data only. | |
| platform | No | Available on this platform. This is availability, NOT crossplay. | |
| play_together | No | Confirmed way to play together. Positive evidence only. | |
| crossplay_confirmed | No | Only include games with positive crossplay evidence. Only `true` is accepted. | |
| max_session_minutes | No | Upper bound on typical session length in minutes. |
Output Schema
| Name | Required | Description |
|---|---|---|
| source | Yes | |
| results | Yes | |
| result_count | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds significant behavior beyond the annotations: unknown metadata is treated as unknown rather than 'no', party size is canonical co-op group data never server capacity, and results carry source/URL attribution obligations. These are important behavioral traits not visible in the schema or 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 dense sentences, each earning its place. The purpose is front-loaded, core caveats are stated, and the attribution requirement is included without padding.
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 7-parameter read-only tool with an output schema, the description covers all necessary behavioral cautions, source identification, and link-handling expectations. Nothing critical is missing for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds useful semantic context beyond the schema: canonical party size semantics, unknown-never-'no' behavior, and the distinction between platform availability and crossplay. It does not deeply describe every parameter but meaningfully augments 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 states a specific verb and resource: 'Find published co-op games from Co-Op Now' matching concrete co-op intent. It distinguishes this tool from siblings by naming the source and the unique filtering dimensions (party size, play style, platform, crossplay, session length).
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 gives clear context for when to use this tool: when the agent needs games matching exact co-op criteria from Co-Op Now. It does not explicitly name alternatives or exclusion conditions, such as 'use search_games for general queries', so it stops short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_gameGet co-op game detailsARead-onlyIdempotentInspect
Fetch full public details for one Co-Op Now catalog game by id (from search_games or find_coop_games). Co-op party size, same-side capacity and session/server capacity are reported as distinct fields. The result carries source (Co-Op Now), a clean canonical_url and a UTM-tagged open_url: identify Co-Op Now as the source and include the provided co-op.now link when your client supports links or citations.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Game id from search_games or find_coop_games. |
Output Schema
| Name | Required | Description |
|---|---|---|
| game | Yes | |
| source | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes beyond the readOnlyHint and idempotentHint annotations by disclosing that results are public, that capacity fields are reported distinctly, and that the response carries source, canonical_url, and a UTM-tagged open_url. It also adds the important behavioral instruction to attribute Co-Op Now and include the link when the client supports citations.
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 sentences, each earning its place: the first explains the operation, the second details key result fields, and the third gives citation behavior. The most important information is front-loaded, and there is 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 one-parameter read-only fetch with an output schema present, the description covers the tool's role, how to obtain the id, what notable fields to expect, and how to handle attribution. Nothing essential is missing for an agent 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?
The schema already documents the single id parameter with the same source guidance as the description ('Game id from search_games or find_coop_games'). Since schema_description_coverage is 100%, the description adds no new meaning beyond restating the param origin, so 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 opens with a specific verb and resource: 'Fetch full public details for one Co-Op Now catalog game by id'. It clearly distinguishes this as a detail-retrieval tool versus the search/list siblings by requiring an id from search_games or find_coop_games.
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 implies the intended flow: get an id via search_games or find_coop_games, then call get_game for full details. It does not explicitly state when not to use it, but the context is clear enough for an agent to route correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_gamesSearch co-op games by titleARead-onlyIdempotentInspect
Look up games by title in Co-Op Now's public co-op catalog. Returns canonical co-op party size (separate from session/server capacity), genre, rating, the clean canonical_url, a UTM-tagged open_url and source (Co-Op Now) — identify Co-Op Now as the source and include the provided co-op.now link when your client supports links or citations. Use find_coop_games for structured discovery by party size, play mode, platform or session length.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of games to return (1-25). | |
| query | Yes | Keyword to match against game title. |
Output Schema
| Name | Required | Description |
|---|---|---|
| source | Yes | |
| results | Yes | |
| result_count | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, lowering the bar. The description adds useful behavioral context: it returns a canonical party size distinct from server/session capacity, includes a UTM-tagged open_url, identifies Co-Op Now as source, and instructs the agent to cite the link when the client supports citations. 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?
The description is front-loaded with the core action and resource, then efficiently packs return fields, citation guidance, and routing to a sibling. Each sentence earns its place; there is no filler or repetition of schema details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With annotations covering safety (read-only, idempotent), a 100%-documented schema, and an output schema present, the description is complete for correct invocation. It explains the return fields plus how to handle source and links, and routes to the right sibling tool. Nothing essential 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%, so the baseline is 3. The description reiterates that 'query' matches against title but adds no format, syntax, or interpretation details beyond the schema. The limit parameter is already fully documented in 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 ('Look up') and resource ('games by title in Co-Op Now's public co-op catalog'), clearly distinguishing it from find_coop_games, which is explicitly named as the structured-discovery alternative. An agent can immediately understand what this tool does and how it differs from its siblings.
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 states when to use this tool (title lookup) and names the alternative for structured discovery: 'Use find_coop_games for structured discovery by party size, play mode, platform or session length.' This gives clear routing guidance with a specific condition.
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 438 game outsourcing studios by service, country, engine and platform. No API key.
Explore and discover video games from the Internet Game Database. Search titles, view detailed inf…
Discover AI tools for game development — 100+ tools indexed by engine, task, and pricing.
Ranks Steam games by how much players like them, learned from head-to-head duels.
Related MCP Servers
- AlicenseAqualityCmaintenanceSearch and explore 1,100+ games with 69-dimension Gameplay DNA profiles and find similar games via AI-powered cosine similarity.49MIT
- AlicenseAqualityCmaintenanceSocial layer for AI coding — DMs, presence, discovery, and multiplayer games between developers. 68 tools including messaging, presence, memory, and 27 multiplayer games.8383MIT
- FlicenseNot gradedqualityCmaintenanceHelps users choose which Steam games to play or buy by analyzing their library, playtime, discounts, and reviews.
- AlicenseAqualityCmaintenanceEnables personalized Steam game discovery by ranking the store against a player's playtime history and stated preferences, with tools to search games, inspect details and reviews, and explore taste profiles.1018MIT