SCP Golf MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SCP Golf MCP ServerWhat tee times are available near 9 AM on Saturday?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SCP Golf — Profile 001 of the Sports Context Protocol
The context, safety, and memory layer for sports agents. Golf first.
Before a sports agent acts, it checks SCP. Then SCP learns from what happened.
SCP — Sports Context Protocol — is an open context layer for AI agents operating in sports. Every sport venue has the same five things underneath: inventory, rules, actions, consequences, and memory. SCP is the standard way an agent reads those before it acts, and learns from the outcome after.
SCP Golf is Profile 001 — the first working profile. Golf is the cleanest wedge because an agent cannot safely book, price, move, or recommend anything at a course without understanding tee-sheet state, protected inventory, pricing policy, pace risk, events, and operator memory. Golf makes the problem impossible to ignore.
This repository is SCP Golf Alpha: a synthetic demo course, a local MCP server, booking and pricing safety checks, soft holds, a decision ledger, and a self-learning memory. No real course data, no integrations, no database.
Protocol-level spec:
docs/SCP_CORE_SPEC.mdThe profile system:
docs/SCP_PROFILES.mdThis profile:
docs/SCP_GOLF_PROFILE.md
Why golf agents need this
AI golf agents are coming — answering calls, booking tee times, quoting prices, moving reservations. The problem: most agents only know the conversation. They do not know the course: the tee-sheet state, the member protections, the league blocks, the pricing floor, the pace risk, the operator's preferences, and what happened the last time a similar decision was made.
SCP Golf gives them that, and then it learns.
Related MCP server: Agentic Travel Recommendations MCP Server
What the alpha does
Models one synthetic course — Harbor Ridge Golf Club — for Saturday, June 6, 2026: a 67-slot tee sheet with member, league, and outing blocks.
Exposes the course as 11 MCP resources (read-only context).
Exposes 9 MCP tools for safe booking, pricing, soft holds, decision logging, outcome feedback, and learning insights.
Exposes 4 MCP prompts (reusable workflows).
Logs every decision to a ledger and learns from outcomes — operator overrides, pace issues, price rejections — so the next similar decision is better.
Install
npm install
npm run build
npm run typecheck
npm run testRun
npm run dev # runs the MCP server on stdio (tsx, no build needed)
npm start # runs the compiled server from dist/Test it interactively with the MCP Inspector:
npx @modelcontextprotocol/inspector npm run devThe tools
Tool | What it does |
| Full operating context — read this before acting. |
| Available tee times near a preferred time. |
| Is a booking allowed, blocked, risky? Writes a decision. |
| Is a quoted/discounted price allowed? Writes a decision. |
| Temporary hold on a tee time before confirmation. |
| Log a decision directly. |
| The learning tool. Feed an outcome back to SCP. |
| What SCP has learned. |
| Explain a result for golfer / operator / developer. |
The resources
scp://course/demo and its children: context, tee-sheet,
booking-policy, pricing-policy, events, weather, pace,
decision-ledger, learning-memory, soft-holds.
The self-learning loop
This is the heart of SCP. It is operational learning — no model training.
An agent calls a tool. SCP builds a decision fingerprint (a bucketed, deterministic description of the kind of decision).
SCP checks rules and learned memory keyed on that fingerprint.
SCP recommends a safe action and logs a decision event.
Feedback arrives via
submit_outcome_feedback.SCP scores the outcome and updates its learning memory.
The next decision with a matching fingerprint is shaped by that memory.
The demo moment: ask for Saturday ~09:00, have an operator override the result
once, ask again — SCP now recommends the operator's preferred time. See
docs/LEARNING_LOOP.md.
Docs
docs/SCP_CORE_SPEC.md— the protocol, sport-agnostic.docs/SCP_PROFILES.md— the profile system and roadmap.docs/SCP_GOLF_PROFILE.md— Profile 001 primitive mapping.docs/SCP_GOLF_SPEC.md— golf implementation detail.docs/QUICKSTART.md— run and test locally.docs/DEMO_PROMPTS.md— 10 demo prompts.docs/LEARNING_LOOP.md— how the learning works.docs/ROADMAP.md— phases beyond the alpha.
Status
Alpha. Synthetic data. Booking safety first. Self-learning from decision outcomes. Not partnered with any course, not integrated with any provider, not live with any operator.
License
MIT
Available Tools
9 toolscheck_booking_actionCheck booking actionC
Checks whether a booking is allowed, blocked, risky, or warns based on policy and learned memory. Writes a decision event to the ledger.
| Name | Required | Description | Default |
|---|---|---|---|
| now | No | ||
| date | No | 2026-06-06 | |
| agentId | No | ||
| players | No | ||
| courseId | No | demo | |
| publicAgent | No | ||
| requestedStartTime | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses the side effect of writing a decision event and mentions underlying policy/memory, but does not detail whether the tool is safe, idempotent, or has destructive potential.
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 efficient sentences with no fluff. The first sentence states the core function, the second adds a key side effect. Well structured for quick scanning.
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 tool with 7 parameters and no output schema, the description provides only the high-level purpose. It does not explain allowed values, return format, or how to interpret the four possible outcomes (allowed, blocked, risky, warns), leaving gaps for effective use.
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 tool description provides no details about the 7 parameters (e.g., meaning of 'now', 'date', 'players', etc.). The description fails to compensate for the lack of parameter documentation.
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 checks booking status (allowed, blocked, risky, warns) and mentions writing a decision event. However, it could better distinguish itself from sibling 'write_decision_event' by clarifying that its primary purpose is checking, not just writing.
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?
No explicit guidance on when to use this tool vs alternatives. With siblings like 'create_soft_hold' and 'check_pricing_action', the description fails to clarify that this is for checking policy compliance before a booking action.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_pricing_actionCheck pricing actionB
Checks whether a quoted or discounted price is allowed, given the absolute floor, time-window rate, discount limits, approval rules, and learned pricing patterns. Writes a decision event.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | 2026-06-06 | |
| agentId | No | ||
| courseId | No | demo | |
| startTime | Yes | ||
| currentPrice | Yes | ||
| proposedPrice | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden. It states that the tool writes a decision event, which is a side effect, but does not disclose other behavioral traits such as error conditions, rate limits, or required permissions. The description is adequate but could be more transparent.
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 concise with two sentences, but the first sentence is somewhat dense listing many factors. It could be slightly more focused, but overall it is not overly verbose.
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 6 parameters, no output schema, and no annotations, the description lacks important details such as what the return value is, any constraints on input formats, and preconditions for use. It is incomplete for an agent to invoke reliably.
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 description coverage is 0%, meaning the schema properties have no descriptions. The tool's description mentions criteria like 'absolute floor' and 'discount limits' but these are not parameters; the actual parameters (date, agentId, courseId, etc.) are not explained. The description adds minimal value beyond the raw 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 clearly states the tool checks whether a quoted or discounted price is allowed, specifying several criteria. It also mentions that it writes a decision event, but does not explicitly differentiate it from the sibling tool 'write_decision_event' which may cause 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 description implies usage when validating a price, but provides no guidance on when not to use it or alternatives. For example, if only a decision event needs to be written without checking, the sibling 'write_decision_event' would be more appropriate, but this is not mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_soft_holdCreate soft holdC
Creates a temporary hold on a tee time before confirmation. Marks the slot as soft_hold on the tee sheet.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | 2026-06-06 | |
| agentId | No | ||
| players | No | ||
| courseId | No | demo | |
| startTime | No | ||
| teeTimeId | No | ||
| golferName | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description should disclose behavioral traits. It states the tool is a write operation (creates a hold) but does not mention permissions, rate limits, side effects, what happens on expiration, or if the hold can be removed. The behavior is minimally described.
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 with no unnecessary words. It is concise but could benefit from a brief summary of input fields. Structure is adequate for the length.
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 tool with 7 parameters, all optional, no output schema, and no annotations, the description is too brief. It does not clarify what a soft hold is relative to other holds, the duration, or what the response contains. Completeness is insufficient.
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 0%, meaning no parameter descriptions in the schema. The description does not explain any of the 7 parameters (date, agentId, players, courseId, startTime, teeTimeId, golferName). It adds no semantic value beyond their names.
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 creates a temporary hold on a tee time before confirmation and marks the slot as soft_hold. The verb 'creates' and resource 'soft hold' are specific, and the tool is distinct from sibling tools which deal with course context, inventory, booking actions, and feedback.
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?
No guidance is provided on when to use this tool versus alternatives. There is no mention of prerequisites, when not to use it, or how it relates to sibling tools like check_booking_action or check_pricing_action.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
explain_actionExplain actionB
Explains a decision result for a chosen audience: golfer (simple, no internal language), operator (operational detail), or developer (structured detail).
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes | ||
| audience | No | golfer | |
| actionType | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states the tool 'explains' a result, implying no side effects, but does not explicitly confirm read-only behavior or disclose any other behavioral traits like required permissions or error conditions.
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 front-loads the verb and resource, providing clear purpose and audience details without extraneous information. Every word is informative.
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 3 parameters including a nested object and an enum, but the description only covers the audience aspect. It lacks explanation for 'actionType' and 'result', which are required. No output schema exists, so the description should compensate but does not.
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 only adds meaning for the 'audience' parameter by explaining each enum value. It does not explain the 'actionType' or 'result' parameters, which are required and lack additional context 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 clearly states the tool explains a decision result for specific audiences, using a verb 'explains' and resource 'decision result'. However, it does not explicitly differentiate from sibling tools like 'check_booking_action' or 'write_decision_event', which might also involve explanations.
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 by describing audience types (golfer, operator, developer), but it does not provide when-to-use or when-not-to-use guidelines relative to siblings. No exclusions or alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_available_inventoryGet available inventoryB
Finds available tee times near a preferred time. Never returns protected, booked, or blocked inventory as bookable.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | 2026-06-06 | |
| players | No | ||
| publicAgent | No | ||
| preferredTime | No | ||
| timeWindowMinutes | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses a key behavior: never returns protected/booked/blocked inventory. However, with no annotations provided, it fails to mention auth requirements, rate limits, or behavior when no inventory matches (e.g., empty result set).
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 focused sentences with no redundant information. Purpose is stated first, followed by a critical behavioral constraint. Every sentence adds value.
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 5-parameter tool with no output schema and no annotations, the description is severely incomplete. It omits return values, error handling, pagination, and parameter details, leaving the agent to guess or fail.
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 has 5 parameters with 0% description coverage (no descriptions in schema). The description only vaguely references 'preferred time', failing to explain each parameter's purpose, constraints, or expected values. The agent receives no guidance on how to use parameters.
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 it finds available tee times near a preferred time and explicitly mentions it never returns non-bookable inventory. This differentiates it from sibling tools like check_booking_action or create_soft_hold.
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?
Implied usage for finding available tee times, but no explicit when-to-use, when-not-to-use, or comparison to alternatives like get_course_context. Missing guidance on prerequisites or if inventory availability may be delayed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_course_contextGet course contextA
Returns the full operating context for the course: tee-sheet summary, inventory, booking and pricing policies, events, weather, pace risks, recent decisions, and learning insights. An agent should call this before acting.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | 2026-06-06 | |
| courseId | No | demo |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries full burden. It discloses what data is returned but omits behavioral traits such as side effects, authentication requirements, or performance characteristics. A read operation is implied but not confirmed.
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: the first lists the comprehensive return data, the second provides critical usage guidance. Every word adds value; no superfluous content.
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 lack of output schema and annotations, the description fairly covers what the tool returns and when to use it. The list of data types is informative, though the exact return structure remains unspecified.
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 adds no detail about the 'date' or 'courseId' parameters beyond their names. Defaults are given, but format, constraints, or valid values are not explained.
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 it returns 'full operating context' for a course, listing specific data categories (tee-sheet, inventory, policies, etc.). This distinguishes it from siblings like get_available_inventory or check_booking_action, which are more narrow.
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 advises 'An agent should call this before acting,' establishing strong usage context. While it does not enumerate when not to use or provide alternatives, this directive is sufficient given the sibling tools that are more specific.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_learning_insightsGet learning insightsC
Returns what SCP has learned: lessons, operator preferences, pricing and pace patterns, and similar past decisions. Optionally filtered to a decision fingerprint key.
| Name | Required | Description | Default |
|---|---|---|---|
| courseId | No | demo | |
| fingerprintKey | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description must disclose behavioral traits. It does not mention that the operation is read-only, safe, or any potential costs, side effects, or authentication needs. The filtering behavior is described, but that is a parameter feature, not a behavioral trait.
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, clear sentence that efficiently conveys the core function and filtering option. No extraneous words, though it could be slightly more structured (e.g., bullet list of returned items).
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 no output schema and simple parameter list, the description adequately outlines the tool's purpose and main parameter. However, it lacks details on return format, pagination, error states, or examples, leaving some gaps for an agent to fully understand behavior.
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 input schema has 0% description coverage (only types and a default). The description adds meaning for 'fingerprintKey' by clarifying it filters the results, but 'courseId' is left unexplained (only noted with default 'demo'). This partially compensates for the schema deficiency.
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 'Returns what SCP has learned' and lists concrete examples (lessons, preferences, pricing and pace patterns), making the tool's purpose specific and understandable. However, it does not explicitly distinguish the tool from siblings like get_course_context or explain_action.
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?
No guidance is provided on when to use this tool versus siblings or under what conditions (e.g., prerequisites, limitations). The description only states optional filtering, leaving the agent to infer appropriate usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
submit_outcome_feedbackSubmit outcome feedbackC
The learning tool. Attaches an outcome to a past decision and updates SCP's learning memory so future similar decisions improve.
| Name | Required | Description | Default |
|---|---|---|---|
| notes | No | ||
| metrics | No | ||
| feedbackType | Yes | ||
| decisionEventId | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose all behavioral traits. It mentions updating learning memory but omits side effects such as whether it is destructive, requires special permissions, or alters existing data. The word 'attaches' implies a write operation, but no further detail is given.
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 long with no wasted words, but the first sentence 'The learning tool.' is somewhat generic and could be more informative. Overall, it is efficiently structured.
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 tool with 4 parameters (including nested objects and an enum), no output schema, and no annotations, the description is severely incomplete. It does not explain the purpose of parameters, expected behavior, or return value, leaving the agent without sufficient context to use 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 0% and the description does not explain any of the 4 parameters (decisionEventId, feedbackType, notes, metrics). It mentions 'outcome' vaguely but fails to link to the enum values or nested object structure.
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 attaches an outcome to a past decision and updates learning memory, which is specific and distinct from sibling tools like write_decision_event (which likely records the decision itself). However, it does not explicitly differentiate from other feedback-related tools.
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?
No guidance is provided on when to use this tool versus alternatives like get_learning_insights or check_* actions. The description simply states what it does without context for appropriate invocation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
write_decision_eventWrite decision eventB
Logs a decision event to the ledger. Most decision tools write their own events; this tool is for agents that want to log an action directly.
| Name | Required | Description | Default |
|---|---|---|---|
| agentId | No | ||
| allowed | Yes | ||
| reasons | No | ||
| courseId | No | demo | |
| toolName | Yes | ||
| riskLevel | No | low | |
| actionType | Yes | ||
| inputSummary | Yes | ||
| resultSummary | Yes | ||
| fingerprintKey | No | manual | |
| requiresApproval | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must disclose behavioral traits. It only states that logging occurs, without mentioning side effects, permissions, reversibility, or ledger specifics. The term 'decision event' is undefined, leaving significant behavioral gaps.
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 and front-loaded with the purpose. It is efficient but very sparse; it could include parameter hints without sacrificing conciseness.
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 11 parameters, no output schema, and no annotations, the description is inadequate. The agent lacks understanding of what constitutes a decision event, how to fill in required fields (e.g., toolName, actionType), and the overall ledger context. Sibling tools like 'check_booking_action' suggest a domain, but the description doesn't tie them together.
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%, yet the description adds nothing about any of the 11 parameters (e.g., agentId, allowed, reasons). Without parameter explanations, an agent cannot correctly populate fields beyond what the schema names imply.
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 that the tool logs a decision event to the ledger. It differentiates itself by noting that most decision tools write their own events, positioning this tool for direct logging, which provides specific verb+resource and sibling distinction.
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: for agents that want to log an action directly, and implies that if other decision tools handle logging, this tool is unnecessary. It gives clear context but lacks explicit when-not-to-use or alternative tool names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
9 tool updates
v0.1.2- First observed
check_booking_action - First observed
check_pricing_action - First observed
create_soft_hold - First observed
explain_action - First observed
get_available_inventory - First observed
get_course_context - First observed
get_learning_insights - First observed
submit_outcome_feedback - First observed
write_decision_event
TDQS
Each tool has a clearly distinct purpose: context retrieval, inventory lookup, policy checks, hold creation, decision logging, feedback, insights, and explanation. No overlap in functionality.
All tool names follow a consistent verb_noun pattern in snake_case, using imperative verbs like get_, check_, create_, write_, submit_, explain_. No mixing of conventions.
9 tools is perfectly scoped for a golf course management domain, covering context, inventory, policies, actions, logging, learning, and explanation without excess.
Covers core workflows: context, inventory, booking/pricing checks, holds, decision logging, and learning. Minor gap: no explicit release or confirm tool, but temporary holds auto-expire as per description.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Vacation rental discovery, direct booking, and property protection for AI agents.
- mcp-serverOAuthcom.make
Give your AI agents the tools to build, manage, and run automation workflows.
Last-minute booking slots across 11 suppliers. Search, price, and execute bookings via AI agents.
Sovereign Agent OS — Persistent Memory, Governance & Compliance for AI Agents.
Related MCP Servers
- FlicenseBqualityDmaintenanceProvides AI agents with secure access to Salesforce data and operations, enabling natural language interaction with CRM for sales, marketing, and executive teams.65-
- FlicenseNot gradedqualityBmaintenanceEnables an AI agent to fetch member profiles and generate deterministic, partner-rule-compliant travel recommendations on a multi-tenant white-label platform.-
- AlicenseNot gradedqualityAmaintenanceA local memory and awareness layer for AI agents, allowing them to remember approved context and operate under user-governed boundaries.Apache 2.0
- FlicenseAqualityCmaintenanceEnables AI agents to manage cab bookings, estimate fares, and dispatch drivers with a 2-tier priority algorithm for hotel guests, providing 18 MCP tools for driver management, dispatch, and ride lifecycle.20-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dswane/Sports-Context-Protocol'
If you have feedback or need assistance with the MCP directory API, please join our Discord server