keynote-harvest-mcp
Server Quality Checklist
Latest release: v0.1.0-rehearsal.0
- Disambiguation5/5
Each tool occupies a distinct stage in the Keynote-to-manifest pipeline: app discovery, PDF export, harvesting, manifest reading, and output listing. No two tools share overlapping responsibilities, so an agent can confidently select the right one based on the current workflow step.
Naming Consistency5/5All tool names follow a consistent verb_noun pattern with domain-specific context (list_, export_, harvest_, get_, list_). The naming is uniform and predictable, with only minor formatting differences that do not hinder readability.
Tool Count5/5With exactly 5 tools, the server maps to a focused and complete workflow without unnecessary bloat. Each tool contributes a necessary step or query, making the count well-scoped for the server's purpose.
Completeness5/5The tool set covers the full lifecycle from identifying Keynote apps, exporting to PDF, harvesting into a manifest, reading its metadata, and listing output directories. There are no obvious dead ends or missing operations for the stated purpose of Keynote PDF harvesting and manifest access.
Average 3/5 across 5 of 5 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 1 commit in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI is passing
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations and no output schema, the description must carry all behavioral disclosure, but it only states that apps are listed and a path recommended. It does not explain whether the tool scans the Applications directory, how missing defaults are handled, or any side effects, leaving key behaviors undocumented.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler or repetition. The phrasing is slightly awkward ('recommended explicit app path'), but it remains economical.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations, no output schema, and two undocumented parameters, the description leaves too much unspecified: return format, parameter effects, and how this relates to the export workflow. An agent can guess its basic purpose but not confidently reason about correct invocation with the available booleans.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters1/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description adds no meaning to the two boolean parameters (searchApplicationsDir, includeMissingDefaults). The parameter names are only weakly self-explanatory, and the description fails to compensate for the lack of schema documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'List' with a clear resource ('installed Keynote-like macOS apps') and adds the distinctive output ('recommended explicit app path for native export'). This distinguishes it from the export/harvest siblings, though 'Keynote-like' and 'native export' remain somewhat vague.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'for native export' implies this tool is meant to precede export_keynote_to_pdf, but there is no explicit when-to-use guidance or statement of when to prefer siblings such as list_harvest_outputs. Usage context is only implied, not stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure, but it only describes what the tool does at a high level. It does not mention that harvest writes files to disk, requires a local pipeline, may truncate long decks, or depends on external tools like Poppler.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, tight sentence with no wasted words and the key outcome is front-loaded. It is concise, though perhaps too terse for a 10-parameter tool with no output schema.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex tool with 10 parameters, no annotations, and no output schema, the one-sentence description is not enough. It names the output type but omits usage sequence, side effects, failure modes, return shape, and key behavioral caveats, leaving the agent to infer too much.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds no parameter-level meaning beyond the input schema. Schema description coverage is 60%, so several parameters such as slug, title, sourceKind, and sourceSummaryPath have no description in either the schema or the tool description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb ('Harvest'), a resource ('exported Keynote PDF'), and a concrete output type ('KeynoteHarvestManifest'), so the tool's main function is clear. It does not explicitly name or differentiate sibling tools like export_keynote_to_pdf or get_harvest_manifest, so it falls short of full sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'exported Keynote PDF' implies this tool is meant to be used after export_keynote_to_pdf, but it never states when to prefer this tool over alternatives, nor does it mention any exclusions or preconditions. Usage context is only implied, not explicitly guided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states the primary behavior—listing known harvest output folders and indicating manifest presence—but does not explain what 'known' means, how harvestRoot/redactionMode alter results, or whether any side effects exist. The behavior is understandable but incomplete for a tool with no annotation support.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. Every clause adds meaning: the action, the target resource, and the distinguishing output detail are all present.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema and no annotations, the description leaves significant gaps: no parameter semantics, no mention of how redactionMode affects the listing, no indication of the return shape beyond the presence of a manifest, and no connection to sibling tools. This is insufficient for correct invocation in unfamiliar workflows.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters1/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does nott mention either parameter. It provides no meaning for harvestRoot or for the redactionMode enum values 'display' vs 'local-debug'. The description fails to compensate for the complete lack of parameter documentation in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does 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 concrete resource ('harvest output folders') while adding the key output detail that it reports whether each folder contains a harvest manifest. It does not explicitly distinguish itself from sibling tools such as get_harvest_manifest, but the resource and stated output make the tool's role reasonably clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to choose this tool over alternatives such as get_harvest_manifest or harvest_keynote_pdf. There is no mention of prerequisites, workflow context, or explicit when-not-to-use scenarios, so the agent must infer usage largely from the tool name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It hints at macOS Keynote automation but never states that Keynote must be installed, that macOS is required, that the export writes files into the harvest root, or what happens when the .key file is missing or Keynote is unavailable. The phrase 'using macOS Keynote automation' gestures at the dependency but does not disclose requirements or failure modes.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
A single, complete sentence that front-loads the purpose with zero filler. Every word carries meaning — verb, source format, target format, and mechanism in one pass.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a 7-parameter automation tool with no annotations and no output schema, yet the description is one sentence. It omits the macOS/Keynote prerequisite, permission requirements (automation/accessibility prompts), output location defaults, and side effects. For a tool of this complexity, the description should be substantially richer.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is only 43%, below the 50% threshold where the description must compensate. Four parameters (slug, title, redactionMode, keynoteAppPath) are undocumented in both the schema and the description. The description's 'native Keynote .key file' phrase maps weakly to keynotePath but adds nothing about the other three undocumented parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb (Export), resource (.key file), target format (PDF), and mechanism (macOS Keynote automation). This clearly distinguishes it from its closest sibling harvest_keynote_pdf, which implies collecting already-exported output rather than converting a native file.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The core use case is evident from the verb-object construction, so an agent can infer when to call it. However, the description gives no explicit guidance about when NOT to use it or which sibling covers the complementary case (harvest_keynote_pdf is never named as the alternative for already-generated PDFs). Guidance is implied, not stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral disclosure burden. It usefully reveals read-only behavior ('Read') and default behavior ('Defaults to display-safe source metadata'). However, it does not explain what 'display-safe' means, what output the caller receives, or whether includeRawSource changes the response structure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no filler. The core purpose is front-loaded, and the second sentence adds practical usage detail. Every clause earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no output schema, no annotations, and 0% schema coverage, the description is too thin. It does not clarify what 'summary metadata' contains, how includeRawSource affects the result, or what 'display-safe' versus 'raw' means in practice. An agent would likely need to inspect example outputs or guess.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does 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 partially explains redactionMode's purpose and default, but manifestPath is only inferable from its name and includeRawSource is not mentioned at all. The description adds some meaning but leaves significant parameter semantics undocumented.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Read') and a specific resource ('summary metadata from a KeynoteHarvestManifest'). This clearly distinguishes the tool from siblings like export_keynote_to_pdf and list_harvest_outputs. Even without a title, the purpose is immediately understandable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives some parameter-level guidance ('use redactionMode local-debug or raw for local paths') but says nothing about when to choose this tool over alternatives. It does not mention siblings or state exclusions, so the agent must infer when this tool is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
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/hulin42/keynote-harvest-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server