Skip to main content
Glama
valentil

FeatureBoard MCP Server

by valentil

Start background static checks

start_checks

Start background static checks for a project: syntax-check changed files and run configured commands. Returns a runId immediately for polling results later.

Instructions

Fire-and-forget: spawn a DETACHED background run of the project's static checks (syntax-check of changed .js/.mjs/.cjs via node --check, plus any configured commands — lint, a fast test subset, etc.) and return a runId IMMEDIATELY. Pure CPU, zero model tokens, never blocks — the runner survives this call and writes its results to /checks/.json. Scope it to a commit with revision (else it uses the last commit / dirty tree). Poll results later with get_check_results. commit_feature already starts checks automatically on every commit (checks.autoOnCommit); use this to run them on demand. Returns started:false with a reason when the project has no checks config and no package.json in its code repo.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ticketNoTicket to associate the run with (so get_check_results can find it by ticket).
projectYes
revisionNoCommit hash to scope changed-file detection to (git show); defaults to the last commit / dirty tree.
Behavior4/5

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

Discloses fire-and-forget nature, no blocking, CPU-bound, file output, and survival after call. Annotations already indicate non-readOnly, so description adds context like resource usage and persistence.

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?

Well-structured, front-loaded with core action. Slightly verbose but each sentence adds value. Could be trimmed slightly for conciseness.

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?

Covers return value, failure case, file location, and polling mechanism. No output schema needed as descriptions handles it. Complete for a fire-and-forget 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?

Description explains revision defaults and ticket association beyond schema descriptions. Project parameter not described in schema, but description implies its role.

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?

Clearly states it spawns a detached background run of static checks on project's .js/.mjs/.cjs files and returns a runId. Distinguishes from sibling commit_feature which does automatic checks.

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

Usage Guidelines5/5

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

Explicitly says 'use this to run them on demand' and notes commit_feature auto-starts checks. Also explains when it returns started:false (no config).

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/valentil/featureboard-mcp'

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