mcp-kettlelogic
Server Details
MCP server exposing Kettle Logic insight articles & industry guidance as tools + resources.
- Status
- Healthy
- Uptime
- 100.0% over 37 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
- Repository
- mploschiavo/mcp-kettlelogic
- GitHub Stars
- 0
- Server Listing
- mcp-kettlelogic
TDQS
Scored across 5 tools
Each tool has a distinct purpose: fetching a single article, fetching an industry overview, listing articles, listing industries, and searching articles. There is no overlap or ambiguity.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., get_article, list_industries), making them predictable and easy to understand.
With exactly 5 tools, the set is well-scoped for the server's purpose of retrieving and searching article and industry content. No tool feels extraneous or missing.
The tool set covers all likely operations for a read-only content API: listing and getting both articles and industries, plus search. There are no obvious gaps for the stated domain.
Available Tools
5 toolsget_articleAInspect
Fetch one insight article as readable text (slug, e.g. "control-tower-operations").
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It states 'fetch' implying read-only, but does not disclose permissions, error handling, rate limits, or whether the operation is idempotent. Minimal behavioral context.
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?
One sentence (12 words) with key information front-loaded. No fluff or redundancy; every word 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?
Adequate for a simple single-parameter tool with an output schema. Covers basic purpose and parameter but lacks usage guidelines and behavioral transparency, leaving gaps for an agent.
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%, so description must compensate. Provides an example for 'slug' parameter, adding context beyond the schema's type and title, but no further details on slug format or how to obtain it.
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?
Clearly states verb 'Fetch', resource 'insight article', and output format 'readable text'. Distinguishes from siblings like search_articles and list_articles by specifying retrieval by slug with an example.
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?
Implies usage when a specific slug is known (e.g., 'control-tower-operations'), but does not explicitly state when to use this over siblings, nor provides exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_industry_overviewAInspect
Return a plain-text overview for an industry page (slug, e.g. "retail").
| Name | Required | Description | Default |
|---|---|---|---|
| industry | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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 return type (plain-text overview) but does not disclose whether the operation is read-only, any authorization needs, rate limits, or side effects. The gap is significant for a tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single 11-word sentence that efficiently communicates the tool's purpose and parameter style. No wasted words; every part 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 simple retrieval tool with one parameter and an output schema present, the description is mostly adequate. It lacks mention that the slug should be valid (e.g., from list_industries) and error conditions, but the core functionality is covered.
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 single parameter 'industry' has no description in the schema (0% coverage). The description specifies it is a 'slug' and gives an example ('retail'), adding critical meaning beyond the schema's title alone.
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 'Return' and resource 'overview for an industry page' with a concrete example slug. It clearly distinguishes from siblings like get_article and search_articles by targeting industry overviews.
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 for obtaining an industry page overview but provides no explicit when-to-use, when-not-to-use, or references to alternative tools like list_industries. It lacks guidance on context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_articlesAInspect
List every Kettle Logic insight article (title, slug, description) as JSON.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description indicates a simple read operation with no side effects. For a list tool with no parameters and no annotations, it sufficiently explains the behavior. However, it omits potential details like pagination or rate limits, which may be inferred but are not explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence with no wasted words, front-loaded with the core action and resource. It is efficient and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no parameters and an output schema exists, the description covers the essential purpose and output. It is complete for typical use, though lacking explicit mention of pagination or ordering. Still, it is adequate for a simple list operation.
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?
There are no parameters, so the description adds value by specifying the return fields (title, slug, description) beyond the empty schema. This exceeds the baseline expectation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (list), resource (every Kettle Logic insight article), and output format (JSON), including specific fields returned (title, slug, description). It effectively distinguishes from sibling tools like get_article or search_articles by implying it returns all articles.
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?
Usage is implied: use to get all articles. However, there is no explicit guidance on when to use this vs. sibling tools (e.g., search_articles for filtered results) or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_industriesAInspect
List the industries Kettle Logic publishes guidance for (name + slug) as JSON.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the burden. It declares the tool as read-only (list) and specifies JSON output, which is transparent. No contradictions or missing behavioral implications.
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?
One sentence with 16 words, no redundancy, front-loaded with the action 'List'. Every word earns its place.
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 parameters and an existing output schema, the description is sufficient. It covers what the tool does and the return format.
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?
No parameters exist, so schema coverage is 100%. The description does not need to add param info. Baseline 4 applies.
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 'List', the resource 'industries', and the output format 'name + slug as JSON'. It is distinct from sibling tools like get_article or search_articles.
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 versus alternatives, though the purpose is clear. It implies usage for listing all industries, but does not mention when-not or point to siblings like get_industry_overview.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_articlesAInspect
Search Kettle Logic insight articles by title, slug or description.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description only mentions search fields. Does not disclose case sensitivity, partial matching, pagination behavior, or any further constraints, leaving agent uncertain about search mechanics.
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?
Single sentence, no filler, all words carry meaning. Efficient and well-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?
Given output schema exists, description does not need to explain return values. Covers search scope and parameter hint, but lacks details on result ordering, error handling, or pagination. Adequate but not exhaustive.
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%, so description must compensate. It clarifies that 'query' searches title, slug, and description, but does not explain the 'limit' parameter beyond its schema default. Partial addition but incomplete.
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 uses specific verb 'Search', identifies resource 'articles', and lists fields 'title, slug or description', clearly distinguishing from sibling tools like get_article or list_articles.
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 when-to-use or alternatives mentioned. Implication is clear for searching but lacks guidance on when to use sibling tools like get_article for exact article retrieval or list_articles for unfiltered listing.
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.
5 tool updates
- First observed
get_article - First observed
get_industry_overview - First observed
list_articles - First observed
list_industries - First observed
search_articles
Related MCP Connectors
MCP server for progressive tool usage at any scale (see https://klavis.ai)
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
A MCP server built for developers enabling Git based project management with project and personal…
An MCP server for deep research or task groups
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for TuringWell, the agent-native Q&A platform for executable, verifiable fixes.165 npmMIT
- AlicenseNot gradedqualityCmaintenanceMCP server for Agent Zone — vendor-neutral infrastructure knowledge, K8s validation, and execution templates for AI agents. 200+ articles, 10 tools, no API key required.5 npmMIT
- FlicenseCqualityDmaintenanceAn MCP server implementing the Unified Cognitive Processing Framework for advanced problem-solving, creative thinking, and cognitive analysis through structured tools for knowledge mapping, recursive questioning, and perspective generation.316-
- FlicenseNot gradedqualityDmaintenanceThis MCP server provides LLMs with a live, curated knowledge base of AI agent research, world models, and source-code reviews, enabling personalized and context-aware responses. Users can either connect to the hosted knowledge or build and host their own vault.-
Glama MCP Gateway
Add one secure layer between your agents and this server.