Skip to main content
Glama
clssck

Dataiku MCP Server

by clssck

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.1.1

  • Disambiguation5/5

    Each tool maps to a distinct Dataiku resource type (project, dataset, recipe, job, scenario, variable, managed_folder, connection, code_env), with no overlapping responsibilities. The descriptions clearly differentiate the scope of each tool.

    Naming Consistency5/5

    All tool names are single lowercase nouns or snake_case compound nouns (e.g., managed_folder, code_env), following a predictable resource-based pattern. No mixing of styles or vague verbs.

    Tool Count5/5

    With 9 tools, the server is well-scoped for Dataiku's domain. Each entity earns its place and the count is comfortably within the ideal 3-15 range.

    Completeness4/5

    The core workflows (list/inspect datasets, recipes, jobs, scenarios; run builds and scenarios) are well covered. Some gaps exist, such as project creation/deletion and code_env management, but these are secondary for common agent tasks.

  • Average 3.3/5 across 9 of 9 tools scored. Lowest: 2.7/5.

    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
    • Last stable release on
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is failing
  • 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.json to 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, the description carries the full burden of behavioral disclosure. It mentions delete_file and download/upload, implying state changes and data transfer, but does not disclose side effects, permission requirements, or reversibility. It is merely a list of actions with no 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.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is extremely concise, using a single line to list operations. It is not verbose and every element adds some information, but it lacks structure and reads more like a summary than a clear specification.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the absence of annotations, an output schema, and any parameter details, the description is far from complete. It does not explain return values, error handling, or the context in which each operation is valid. A multi-operation tool like this needs more explanation to be usable.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters2/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema has zero parameters, so schema coverage is trivially 100%. However, the description does not explain how the tool determines which operation to perform or which folder to act on. This is a significant gap, as the agent cannot infer invocation semantics from the text.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description lists specific operations (list/get/contents/download/upload/delete_file) that clearly indicate this tool manages managed folders. It distinguishes from sibling tools (project, dataset, etc.) by focusing on managed_folder operations. However, it uses the vague term 'ops' and doesn't clarify whether it's a single combined action or separate modes.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    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. It does not mention prerequisites, typical use cases, or when to avoid it. The description simply lists operations without any contextual advice.

    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?

    The description discloses one behavioral detail: 'get is summary-first; set includePayload=true to include payload snippets.' This is helpful. However, it does not explain create/update/delete side effects, permissions, or output details. Moreover, it references an 'includePayload' parameter that does not appear in the input schema, which is misleading. Given no annotations and only partial behavioral disclosure, a 2 is warranted.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is brief, two sentences, and front-loads the operation list. It avoids extraneous content. However, it is so compact that some details are missing, and the mention of 'includePayload' could be better structured. It is concise and efficient, earning a 4.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    With no annotations, no output schema, and an empty input schema, the description must compensate by providing ample context. It lists operations and one get behavior, but it does not explain what a recipe is, what the operations return, how download works, or any security/error considerations. The reference to a non-existent parameter further reduces completeness. This is inadequate for a tool with this little structured metadata, so a 2 is given.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters2/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema has zero parameters, so the baseline would be 4, but the description introduces 'includePayload' as a parameter without it being present in the schema. This creates confusion about the actual parameters. The description adds value by explaining a behavior but contradicts the schema, lowering the score to 2.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description states 'Recipe ops: list/get/create/update/delete/download', clearly identifying the resource (recipes) and the supported verbs. This distinguishes it from sibling tools like project or dataset, though it doesn't elaborate on what a recipe is. A score of 4 is appropriate because the core purpose is clear but not maximally specific.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    There is no guidance on when to use this tool versus alternatives. The description simply lists operations without providing context about use cases, prerequisites, or exclusions. It implies that this is the go-to tool for recipe management, but no explicit guidance is given, earning a 2.

    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?

    The description discloses one behavioral trait: 'get is summary-first; set includeDefinition=true to include full JSON definition.' However, it provides no information about side effects of create/update/delete, permissions, or other operational nuances. With no annotations provided, the description carries the full burden and falls short, especially since the schema lists 0 parameters while the description references a non-existent includeDefinition parameter.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is extremely concise, consisting of two sentences that front-load the operation list and then provide a key detail. Every phrase serves a purpose, with no redundancy or filler.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The tool supports 8+ operations, yet the description only lists them and gives a note about get. With no output schema, no annotations, and no formal parameter definitions, the description is incomplete for an agent to understand return values, error cases, preconditions, or operation-specific nuances. The lone behavioral hint is not enough for such a complex tool.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema is empty (0 parameters), so the baseline is 4. The description adds meaningful parameter-related context by mentioning 'includeDefinition' for the get operation, which is not present in the schema. However, it does not describe parameters for other operations, limiting the added value slightly.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the tool handles datasets and enumerates operations (list/get/schema/preview/metadata/download/create/update/delete), distinguishing it from sibling tools like project, recipe, or job. The resource is specific, but the purpose is broad rather than a single verb, so it stops short of the highest clarity.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    No explicit usage guidance is provided. There are no instructions on when to use this tool versus alternatives, no exclusions, and no mention of prerequisites. Usage is only implied by the resource name 'dataset', which is insufficient for a multi-operation tool.

    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, the description carries the transparency burden. It discloses that get returns package summaries and that full=true changes the output to full package lists, but it does not describe list's behavior, output format, or whether operations are read-only. The 'set full=true' instruction implies a parameter not present in the schema, adding subtle confusion.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is concise, with two sentences that convey the core operations and a key detail about get. It is front-loaded with the operation list, and no words are wasted.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The tool lacks both an output schema and annotations, so the description should fully explain return behavior and operation semantics. It covers get's return behavior but omits list entirely, and the empty input schema means the full=true instruction lacks a matching parameter definition, leaving the tool under-specified.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema is empty, so the description is not required to elaborate on parameters. The mention of 'set full=true' is extra context, but given the 0-parameter baseline, the description adds value by explaining a potential toggle even though it isn't officially parameterized.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose3/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description identifies the tool as handling code environment operations (list and get), which distinguishes it from sibling resource tools. However, it lacks a clear verb+resource structure (e.g., 'List code environments') and reads more like a category label than a specific action.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description offers a brief usage tip for get (full=true for full package lists) but does not explain when to use list versus get or when to prefer code_env over sibling tools. There is no explicit guidance on alternatives, exclusions, or prerequisites.

    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, the description carries the full behavioral burden. It discloses a key behavioral trait: set merges provided standard/local keys with existing values, implying non-destructive updates. However, it omits what get returns, whether there are side effects, and the difference between standard and local keys.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is two sentences with no filler. It front-loads the core purpose and adds one essential behavioral nuance. Every word earns its place.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The tool has no output schema and no annotations, so the description must explain more. It fails to describe what get returns, how to specify which project/target variables, or what 'standard/local' keys mean. An agent would struggle to invoke this correctly without additional context.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema has zero properties, so the description is the only source of parameter meaning. It mentions 'standard/local keys' as conceptual categories, which adds some semantic grounding. The baseline for 0 params is 4, and the description partially compensates by indicating the key types involved.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly identifies the tool as performing get/set operations on project variables, which distinguishes it from sibling tools that handle other resources like datasets or recipes. The phrase 'get/set' provides specific verb+resource clarity, though 'ops' is slightly vague.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    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, nor are any prerequisites or exclusions mentioned. The only hint is the set merge behavior, which is operational rather than context-dependent.

    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 disclosing behavioral traits. It reveals that 'get' is summary-first and can include the full JSON definition with includeDefinition=true, which is useful. However, it does not disclose the behavior or side effects of other operations such as build, buildAndWait, wait, or abort (e.g., whether abort is destructive, whether build triggers execution, what log returns).

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is extremely concise: two sentences. The first sentence front-loads the full list of operations, and the second adds a key behavior note. There is no wasted text, and the structure is easy to scan.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool's complexity (7 distinct operations), empty schema, no annotations, and no output schema, the description is far too sparse. It does not explain what each operation does, what parameters they accept, or what the agent should expect in return. Only the 'get' nuance is covered, leaving most of the tool's behavior undocumented.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema is empty (0 parameters), so the description must add all parameter meaning. It does add valuable context by mentioning the 'includeDefinition' flag for the get operation, which is not present in the schema. This goes beyond the schema's minimal information, though it only covers one of potentially many hidden parameters.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly identifies the resource (jobs) and enumerates the specific operations: list, get, log, build, buildAndWait, wait, abort. This is a specific verb+resource bundle that distinguishes the tool from sibling tools for other resource types (project, dataset, recipe, etc.).

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description provides no explicit guidance on when to use this tool versus alternatives. It only gives a behavioral note for 'get' (summary-first, includeDefinition parameter), but does not specify when to use 'job' vs sibling tools or when to prefer one operation over another. Usage is only implied by the tool name.

    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, the description carries the full burden. It discloses behavioral differences between modes (e.g., rich mode scans project datasets for inferred details) but omits return format, permissions, or any side effects. It is minimally transparent but lacks depth.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single, focused sentence that front-loads the core purpose and then efficiently explains the modes. Every part contributes useful information with no redundancy.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given no output schema and no annotations, the description should explain what the agent will receive or how to interpret results. It only mentions what is scanned but not the return value structure, error cases, or further context needed for effective use.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema has zero parameters, so baseline is 4. The description adds meaning by defining two modes ('mode=fast', 'mode=rich') and their behaviors, going beyond the empty schema. However, it does not clarify how 'mode' is passed given the schema has no properties.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description identifies the tool as 'Connection discovery' with the action 'infer', and further distinguishes two modes (fast and rich). It clearly separates from sibling tools that deal with other DSS entities (project, dataset, etc.), though the exact meaning of 'connection' could be clearer.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage through mode selection ('default mode=fast', 'mode=rich') but does not explicitly state when to use this tool versus alternatives. No exclusions or comparisons to sibling tools are provided.

    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, the description carries the full burden of behavioral disclosure. It does reveal that map returns normalized connectivity in structuredContent.map and that includeRaw adds the original graph payload, offering useful context. However, it says nothing about side effects, permissions, or behavior of the other operations (list/get/metadata/flow).

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is only two sentences, front-loaded with the core purpose ('Project ops') followed by a focused detail on map. Every phrase contributes distinct information, and it is appropriately compact.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the lack of annotations and output schema, the description needs to compensate, but it only elaborates on the map operation. List, get, metadata, and flow are left completely unspecified, with no information about return formats, error behavior, or prerequisites. For a multi-operation tool, this is significantly incomplete.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters5/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema is empty (0 parameters), so baseline is 4. The description adds meaning by mentioning the includeRaw option for map, which is not present in the schema. This goes beyond the schema and provides parameter semantics that would otherwise be entirely undocumented.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly identifies the resource ('Project ops') and enumerates specific operations (list/get/metadata/flow/map), distinguishing it from sibling tools focused on other resources. However, verbs like 'flow' and 'map' are not fully elaborated, leaving some ambiguity.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies this is the tool for project operations but provides no explicit guidance on when to use it versus alternatives, nor does it clarify when each sub-operation (list vs. get vs. map) is appropriate. No exclusions or alternative references are given.

    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 must carry the behavioral disclosure burden. It only reveals that 'get' is summary-first and can be expanded with parameters, but gives no information about side effects, safety, return formats, or what 'run' or 'delete' actually do. The destructive nature of delete is only implied by the verb itself, not disclosed.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single, efficient sentence that front-loads the operation list and includes one practical usage tip. Every word earns its place, with no filler or redundancy.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The tool appears to support multiple operations, but the input schema has zero properties, and the description does not explain how an agent specifies which operation to execute. The includeScript/includeDefinition tip is helpful for 'get', but the absence of any invocation contract for create/update/delete/run and lack of output schema leave the description incomplete for real use.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema is empty, so the baseline is 4 under the rubric. The description adds meaning by naming includeScript/includeDefinition and explaining they provide details for 'get', which is valuable beyond the empty schema. However, it does not explain how the operation (list/run/etc.) is selected, which is a notable gap.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description uses a specific verb phrase 'Scenario ops' and enumerates the exact operations (list/run/status/get/create/update/delete), making it clear this is the tool for scenario management. It also distinguishes this tool from sibling tools like project, dataset, and recipe by explicitly naming the scenario resource.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description gives clear context that this is the tool for scenario operations and provides an actionable tip for using 'get' with includeScript/includeDefinition to retrieve details. However, it does not explicitly state when to prefer this tool over sibling tools or provide when-not-to-use guidance, so it stops short of a 5.

    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

Dataiku_MCP MCP server

Copy to your README.md:

Score Badge

Dataiku_MCP MCP server

Copy to your README.md:

Latest Blog Posts

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/clssck/Dataiku_MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server