Skip to main content
Glama
informatics-isi-edu

Deriva MCP Server

Official

set_column_nullok

Set whether a column accepts NULL values. Use nullok true to allow missing data or false to make the column required, enforcing data completeness.

Instructions

Set whether a column allows NULL values.

Args: table_name: Name of the table containing the column. column_name: Name of the column to update. nullok: True to allow NULL values, False to require values.

Returns: JSON with status, table_name, column_name, nullok.

Note: Setting nullok=False will fail if the column contains NULL values.

Example: set_column_nullok("Subject", "Name", False) # Make Name required

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nullokYes
table_nameYes
column_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full disclosure burden. It clearly indicates this is a mutation (setting nullok), describes the return format, and highlights a key failure condition: 'Setting nullok=False will fail if the column contains NULL values.' This is valuable behavioral context, though it doesn't discuss permissions or reversibility.

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 organized with Args, Returns, Note, and Example sections. Every line serves a purpose, and the format makes it easy to scan. No fluff or redundancy.

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

Completeness5/5

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

For a simple tool with three string/boolean parameters, the description covers the action, parameter meanings, return format, a failure caveat, and an example. It is fully self-contained and complete for an agent to invoke correctly.

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?

Schema description coverage is 0%, so the description must fully explain parameters. It does exactly that, providing one-line explanations for table_name, column_name, and nullok, plus a concrete example. This adds complete meaning beyond the bare schema titles.

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 and resource: 'Set whether a column allows NULL values.' This clearly differentiates it from sibling tools like set_column_description or set_column_display_name, which handle other column attributes. The purpose is immediately clear.

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 clearly states what the tool does and includes an example, but it does not explicitly mention when not to use it or name alternative tools. However, the purpose is so specific that usage context is implicitly obvious, earning a 4 rather than a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/informatics-isi-edu/deriva-mcp'

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