FlightPlan
FlightPlan server is an advisory intent registry that lets coding agents coordinate overlapping work before it collides, record outcomes, and resolve uncommitted-work warnings.
post_intent — file an intent before non-trivial work with summary, kind (build/explore/spike/decision), repo, branch, title, and touches globs; returns intent id, overlap alerts (warn/nudge/fyi), and relevant context.
list_intents — query in-flight/recent work: semantic overlap check by summary, deterministic glob collision check by overlaps, and context search by q/since with filters (repo, author, branch, status, kind, session).
update_intent — revise an intent's summary/touches/branch, renew TTL heartbeat, and re-check collisions mid-session.
complete_intent — close work as done or abandoned with outcome, changed files, commit SHAs, and uncommitted flag to warn others.
mark_intent_landed — tell the registry that previously uncommitted completed work has landed in git, optionally with commit SHAs; idempotent and preserves the completion record.
Overall behavior is advisory only: it never blocks work; it surfaces overlaps and context so agents can coordinate.
FlightPlan
Your agents collide. File a FlightPlan.
Before work begins, each of your agents declares where it's headed and sees what's already in flight. They coordinate around conflicts, then leave behind what changed and why.
Advisory, never locking.
A byproduct of agent work, not another process to maintain.
FlightPlan coordinates coding agents before their work collides. This repo contains the CLI, MCP server, and installer for the hosted service at getflightplan.com.
Quick start
From your repo's root:
uvx getflightplan installThat installs FlightPlan for Claude Code. For Codex or Cursor, append
--agent codex or --agent cursor. --agent also takes a comma list
(--agent claude,cursor) and all, which means every agent this version
knows. The command is safe to re-run.
The first time on a machine, run uvx getflightplan login next — it
connects your account and finishes the MCP setup.
The hosted service is in beta; sign in with your GitHub account at
getflightplan.com. The package is on PyPI, so the
command above is all you need. To pin a branch or commit instead, install from
the source:
uvx --from git+https://github.com/sledmonkey/getflightplan getflightplan install.
Version and compatibility policy: docs/versioning.md.
Related MCP server: asynkor
How it works
File the work. Before editing, an agent declares its task and the files it expects to touch.
See what's in flight. FlightPlan returns overlapping active work, including uncommitted changes Git cannot see, decisions made during coding, plus relevant recent outcomes.
Coordinate. Overlaps are advisory: narrow the work, sequence it, or proceed with context.
Debrief. The agent records what changed, what surprised it, and what it tried so the next session does not start cold.
What the installer adds
.flightplan.toml— pins the repo name every agent posts under, plus the registry URL. Committed on purpose; no secrets.A managed agent snippet in
CLAUDE.mdand/orAGENTS.md./registry-digest— an on-demand "what happened lately" command.A session-end stop hook (
.claude/hooks/flightplan_stop_hook.pyplus its settings wiring) that reminds the agent to close out open intents.
It also checks MCP registration and service reachability, and repairs the registration when the machine has a credential — no prompts. Verification is advisory and never fails the run.
To remove everything the installer wrote, run getflightplan uninstall from
the repo root (--dry-run to preview, --purge-key to also delete the saved
API key).
Logging in
getflightplan login gets a credential without a copied API key. It opens
your browser, you approve there, and the credential goes to
~/.config/flightplan/env with mode 600. The credential is never printed.
After the credential is stored, login also registers the MCP server for
the agent binaries on your machine — the step install has to skip while
the machine has no credential.
On a machine with no browser, run getflightplan login --headless. The
command shows a short code and an address. Open that address on another
device and enter the code.
getflightplan logout removes the stored credential from this machine. To
revoke it on the service, use the /devices page.
Finding your repository
After a login, the client asks the registry which repository this checkout is.
It sends the address of your origin remote and up to 1000 commit ids, which
prove that you have a clone. If your account has access, the id and the name
go into .flightplan.toml. If the registry does not know the repository, the
client offers to register it in your browser. If your account has no access,
the client offers to request it.
getflightplan login --no-register skips the check. getflightplan register
runs it on its own, later. A failed check never fails a login.
Saying that work has landed
An intent completed with uncommitted: true says the work is in someone's
working tree and nowhere else. The registry cannot see your tree, so it keeps
warning everyone who touches those paths until it is told the work landed.
Agents do this with the mark_intent_landed tool. You can do it by hand:
getflightplan landed <intent-id> --commit <sha> --commit <sha>The commits are optional; the timestamp is the correction. Pass the SHAs only if you know them — the client never guesses which commits belong to an intent. Landing can be repeated safely and never rewrites the completed record.
Configuration
The MCP server command is uvx getflightplan mcp — the mcp subcommand is
required. A bare getflightplan prints help and exits, so a registration or
directory build spec without mcp fails before the first MCP message.
FLIGHTPLAN_URL— optional; defaults tohttps://api.getflightplan.comFLIGHTPLAN_API_KEY— your key (the MCP server's env; the stop hook also reads~/.config/flightplan/env)..flightplan.toml— the per-repo pin: areponame andurl, or atarget_idwith a readablenameonce the repo has an id pinned.
What your agent is told
The installer adds the following managed contract with your repo name pinned.
Intent registry
This repo participates in the team intent registry (MCP server: flightplan).
Before starting non-trivial work, call
post_intent. The test: will the work change behavior, defaults, or contracts another agent would encounter — or, for pure investigation, would the findings save the next agent an hour? Yes to either → post; Q&A and typo-level fixes, no. Send a one-paragraph summary (what + why),kind(build, orexplore/spikefor throwaway investigation), andtouchesglobs for the areas you expect to change. Keep the returned id for later. Forrepo, use the basename of the git origin remote (or the repo root directory name if there is no remote) — every agent on this repo must use the same name or collision checks silently miss each other. The response may includecontext: recent completed work relevant to your task — read those outcomes before starting; the surprises and dead ends in them are load-bearing.If the response includes overlaps at level
warn, check what the overlap is before pausing. Two cases need no confirmation — mention the overlap and keep going: the overlapping intent is the very work you were asked to act on (reviewing it, verifying it, following up on it), or your task is read-only. Otherwise, tell your user who is doing what and which globs collide, and ask how to proceed before continuing.fyi/nudgelevels: mention briefly and keep going.If the work changes shape or runs long, call
update_intent: revise the summary/touches when scope grows (collision checks run against them — stale globs miss real collisions), or call with just the id to renew the TTL on work spanning more than a day. The response includes freshoverlaps— the same collision check as posting, glob-based — and awarnthere gets the same treatment as awarnat post time.When the work finishes or is abandoned — including when the session is wrapping up — call
complete_intentwith a one-paragraph outcome: what actually changed, anything surprising, approaches tried and rejected, anything deliberately left in place. If awarnoverlap changed how the work went (coordinated, narrowed scope, proceeded anyway), say which. Attach the git facts you already know:filesactually changed (git diff --name-only),commitscreated, anduncommitted: trueif any of the work is not yet committed — that flag is what lets other agents' collision checks warn loudly instead of quietly. Completing an intent ends the slice, not the session: follow-up work after a complete that changes behavior, defaults, or contracts gets a fresh post — "same session" doesn't exempt it.When you learn declared-uncommitted work has landed, call
mark_intent_landedwith that intent's id (and the commit SHAs if you know them): until someone says so, the registry keeps warning everyone who touches those paths.Re-check for collisions whenever your picture of in-flight work may be stale — posting checks once, and it goes stale over a long session. Re-check moments: a file changed between your read and your edit, or an Edit fails on text you just read — someone's work landed under you; before editing a shared doc or artifact you didn't create this session; when resuming after a handoff from another agent; and before touching files named in an earlier
warn. The cheapest re-check isupdate_intentwith just your intent id (renews the TTL, returns freshoverlaps); uselist_intents(passoverlapsglobs, plussummaryfor a semantic check, orq/sincefor history) when you have no open intent or are scoping new work.When a decision gets resolved in conversation (an approach chosen, an alternative rejected, a direction set), record it the moment it settles:
post_intentwithkind: "decision", the question as the summary, and the resolution inoutcome— what was decided, what was rejected, and why. One call; no touches, no completion later. Decisions never collide and become searchable team memory. Decisions are also the correction mechanism: completed outcomes are immutable, so if one later proves wrong, post a decision citing what actually held.The registry is advisory and must never block work: if its tools are missing or error, proceed with the work, and tell your user once that they can run
uvx getflightplan install(see getflightplan.com) to join this repo's registry.
Data
What leaves your machine is the coordination record: intent summaries and outcome paragraphs, glob patterns, changed-file paths, branch names, and commit ids — sent only to the FlightPlan service. Source code contents are never uploaded. Everything the registry knows, it learns as a byproduct of your agents' work.
The details — what never leaves, and what is stored where — are in docs/data-flow.md. Vulnerability reporting: SECURITY.md.
License
Apache-2.0
Available Tools
5 toolscomplete_intentA
Close out an intent when work finishes or is abandoned. The outcome summary is required for done and is the most valuable artifact this system produces: write one paragraph covering what actually changed, anything surprising, approaches tried and rejected, and anything deliberately left in place. Gather git facts as exhaust — you already have them at completion time: files = repo-relative paths actually changed (git diff --name-only over the work, committed or not); commits = SHAs created for this work; uncommitted = true if ANY of the work is not yet committed (untracked/unstaged/staged-only) — this flag is what lets other agents' collision checks warn loudly instead of quietly. Omit anything unknown.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The intent id returned by post_intent. | |
| files | No | Repo-relative paths actually changed (from `git diff --name-only` over the work). Omit if unknown. | |
| status | Yes | done = landed; abandoned = stopped without landing. | |
| commits | No | Commit SHAs produced for this work. Omit if unknown. | |
| outcome | Yes | One paragraph: what actually changed, surprises, dead ends, things deliberately left alone. | |
| uncommitted | No | True if ANY of the work is not yet committed (untracked/unstaged/staged-only). This flag escalates collision warnings for other agents. False = all committed. Omit if unknown. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Despite no annotations, the description explains key behaviors: outcome summary is the 'most valuable artifact', the uncommitted flag escalates collision warnings, and it instructs to omit unknown fields. It does not address reversibility or permissions, but overall provides substantial 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?
Single dense paragraph, front-loaded with purpose, then outcome guidance, then git facts. Every sentence contributes essential operational detail; no filler.
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 tool with 6 params and no output schema, the description explains the purpose of each param in operational context and the workflow. It stops short of describing the tool's return value or post-conditions, but that may not be needed.
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 covers all parameters with descriptions, but the description adds practical guidance: how to gather files via git diff, what uncommitted means for other agents, and that outcome should cover 'what actually changed, surprises, dead ends'. A minor ambiguity: says outcome required for 'done' while schema requires it always.
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 opens with 'Close out an intent when work finishes or is abandoned' — a specific verb+resource+scope. It clearly distinguishes from sibling tools like post_intent (create) and update_intent (modify).
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?
States explicitly when to use: 'when work finishes or is abandoned'. However, it does not mention alternatives or exclusions, relying on sibling names to disambiguate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_intentsA
Query in-flight and recent work across the team. Three distinct uses — pick exactly one: (1) pre-planning semantic check — pass summary (and optionally overlaps globs) to get judge-assessed semantic overlap before you post_intent; this is the strong collision check; (2) fast glob collision check — pass overlaps alone (no summary, no q) for deterministic prefix matching; (3) context search — pass q and since (add match=any for recall if a precise query returns nothing) to search summaries and outcomes including completed work. q and overlaps are AND-combined: a descriptive q alongside overlaps filters out overlapping intents whose summaries don't contain your words — for a collision check, omit q. q matches per-word (all words must appear, any order). Each returned intent carries an alert_level when overlaps is given: warn = surface loudly to your user; fyi = quiet mention; nudge = possible duplicate spike, suggest comparing notes.
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Plain-text search over summaries and outcomes. | |
| kind | No | Filter results by kind. | |
| repo | No | Filter to one repository. Use the basename of the git origin remote (or the repo root directory name if there is no remote) — must match the name used in post_intent, or the filter silently returns nothing. | |
| limit | No | ||
| match | No | How q terms combine: all (default) = every word must match — precise; any = recall mode, use when a context search with several descriptive words comes back empty. | all |
| since | No | ISO-8601 timestamp or shorthand like '24h', '7d'. | |
| author | No | Filter to one person's intents, e.g. 'sarah' — for questions like 'what did Sarah's agent work on last week?'. | |
| branch | No | YOUR git branch. Overlaps on the same branch are flagged `same_branch` — your own line of work, likely already in your tree, but verify (it may be uncommitted in another session). | |
| status | No | Comma-separated of: active, done, abandoned, expired. Omit for all (history included). | |
| my_kind | No | The kind of YOUR planned work; sets alert levels. | build |
| session | No | Filter to one agent session. Pass 'current' for this session's own intents — e.g. to find your still-open intent before wrapping up. Any other value passes through verbatim. | |
| summary | No | Your planned task, one paragraph. Provide it to get semantic (judge) collision assessment instead of glob-prefix matching — use for a pre-planning check before you're ready to post_intent. | |
| overlaps | No | Globs you expect to touch; filters to overlapping intents and computes alert levels. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden. It thoroughly discloses behavior: how q matches per-word (all words must appear, any order), AND-combination of q and overlaps, the effect of match='any', alert_level values when overlaps is given, and the purpose of each parameter mode. No contradictions exist between description and annotations (none provided).
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?
The description is well-structured with numbered use cases and clear separation, but it is quite lengthy. While every sentence adds value, it could be slightly more concise by integrating the alert_level explanation into the use case descriptions. Overall, it is well-organized but not maximally concise.
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 13 parameters, no output schema, and no annotations, the description covers the three distinct use cases thoroughly and explains parameter interactions. However, it does not describe the return format beyond mentioning 'alert_level.' Without an output schema, a brief note on the fields returned (e.g., summary, kind, status, author) would improve completeness.
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 description coverage is high (92%), but the description adds significant meaning beyond individual parameter descriptions: it explains the three usage patterns, how parameters interact (e.g., summary enables semantic checks, overlaps triggers alert levels, q and overlaps are AND-combined, omit q for collision checks), and provides real-world context for parameters like session, branch, and my_kind.
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 opens with 'Query in-flight and recent work across the team,' clearly stating the action and resource. It then enumerates three distinct use cases, each with a specific purpose, effectively distinguishing this read-only tool from its siblings (post_intent, update_intent, etc.).
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 explicitly instructs the agent to 'pick exactly one' of the three use cases and provides concrete guidance on when to use each: pre-planning semantic check (summary + overlaps), fast glob collision check (overlaps alone), and context search (q + since). It also warns against combining q with overlaps incorrectly and explains when to omit q, offering exceptional decision support.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
mark_intent_landedA
Record that work an already-COMPLETED intent declared uncommitted is now in git. Call this the moment you learn it: you committed and pushed that work yourself, or you can see in the tree that the work another session left uncommitted has since landed. Until someone says so, the registry keeps warning every agent who touches those paths and keeps re-telling the same story about work that is no longer at risk — a tree it cannot see is the one thing it cannot check for itself. Pass the commit SHAs if you know them; landing without them is fine and complete, the timestamp is the correction. Idempotent, and it never rewrites the completion record — the outcome, the reported files and the original uncommitted declaration all stand.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The intent id whose work has landed. | |
| commits | No | Commit SHAs that carried the work, if you know them. Omit if you don't — do not guess. |
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 clearly discloses that the tool is idempotent, never rewrites the completion record, and that providing commit SHAs is optional ('pass the commit SHAs if you know them; landing without them is fine and complete'). It also explains behavioral nuance ('the tree it cannot see is the one thing it cannot check for itself').
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?
The description is a single paragraph that front-loads the core action ('Record that work... is now in git'), then adds context about when and why to call it. Every sentence contributes meaningful information — no redundancy or filler.
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 that there is no output schema and no annotations, the description covers the tool's purpose, usage cues, behavioral traits, and parameter guidance comprehensively. The tool has low complexity (2 params, 1 required), and the description provides everything needed for an agent to select and invoke it correctly.
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 description coverage is 100%, so baseline is 3. The description adds value beyond the schema by explaining the purpose of the `commits` parameter in context ('if you know them. Omit if you don't — do not guess'), and emphasizes that the timestamp is the correction when commits are unknown. This added guidance justifies above baseline.
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 specific verbs ('Record', 'mark', 'landed') and clearly identifies the resource ('work an already-COMPLETED intent declared uncommitted is now in git'). It distinguishes this tool from siblings like complete_intent (which marks intent completion) and post_intent (which creates a new intent) by focusing on the post-completion git state update.
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 explicitly states when to call this ('the moment you learn it') and provides clear examples ('you committed and pushed that work yourself, or you can see in the tree that the work another session left uncommitted has since landed'). It explains the consequences of not calling it ('registry keeps warning', 'keeps re-telling the same story'), which strongly implies when it should be used.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
post_intentA
Register what you are about to work on so other developers' agents can avoid collisions. Call this before starting any non-trivial coding task (anything touching more than a trivial fix). Infer kind: build for work meant to land, explore/spike for throwaway investigation, decision for a resolved decision worth recording (post it the moment a debate settles: pass the resolution in outcome — what was decided, what was rejected, and why; no touches needed; it is stored complete, never collides, and needs no complete_intent). Infer touches from your plan as repo-relative glob patterns. Returns the intent id — keep it to post the outcome later. Also returns any overlapping in-flight intents — active work (alert warn/nudge/fyi) and recently-completed work that may not have landed in git yet (always fyi): overlaps are the COLLISION signal — if overlap level is warn, tell your user before proceeding; for fyi, check whether that work is already in your tree before redoing it. The response also includes context — recently-completed work relevant to THIS task: read those outcomes before you start, the surprises and dead ends in them are load-bearing (a rejected approach you might retry, a gotcha you will hit).
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | build = meant to land; explore/spike = throwaway investigation; decision = a resolved decision recorded for the feed (requires `outcome`). | build |
| repo | Yes | Repository name, e.g. 'raveneye'. Use the basename of the git origin remote (or the repo root directory name if there is no remote) — every agent on the same repo must derive the same string or collision checks silently miss each other. | |
| title | No | Short headline for the work, ≤80 chars, like a commit subject line (e.g. 'FTS5 search + recall mode'). Cheap to write and the feed reads far better with one — provide it. | |
| branch | No | Git branch, if known. | |
| outcome | No | kind=decision only: the resolution — what was decided, what was rejected, and why. Other kinds write outcomes at completion instead. | |
| summary | Yes | One paragraph: what you're doing and why. | |
| touches | Yes | Repo-relative glob patterns you expect to touch, e.g. ['central/services/scorecard*']. |
TDQS
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 comprehensively explains what the tool returns (intent id, overlapping intents with severity levels warn/nudge/fyi, and context of recent work), how to interpret collision signals, and that decision intents are stored as complete and never collide. It also notes the requirement to keep the intent id for posting outcomes later. No contradictions exist.
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?
The description is lengthy but every sentence adds important context for correct tool usage. It is structured with clear explanations for inferred parameters and return value handling. While it could be slightly more terse, the density of actionable information justifies its length. The guidance is front-loaded with the core purpose and when to call.
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?
Despite having no output schema, the description thoroughly explains the return values (id, overlaps with severity, context) and how to act on them. It covers all 7 parameters with extra context, including required fields and special handling for decisions. For a complex tool with 3 required params and behavioral nuance, the description is complete enough for an AI agent to use correctly.
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 100%, so the baseline is 3. The description adds significant value beyond the schema by explaining how to infer 'kind' (build/explore/spike/decision with usage rules), how to derive 'repo' consistently, what 'title' should look like (like a commit subject ≤80 chars), and that 'outcome' is only for decisions. It also offers guidance on 'summary' as a one-paragraph explanation. This extra context raises the score above baseline.
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 tool's purpose: 'Register what you are about to work on so other developers' agents can avoid collisions.' This is a specific verb (register) on a specific resource (intent). It distinguishes from sibling tools like list_intents, update_intent, complete_intent, and mark_intent_landed by focusing on creation and registration of new work intentions.
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 provides explicit guidance on when to use the tool: 'Call this before starting any non-trivial coding task (anything touching more than a trivial fix).' It also explains how to infer the 'kind' and 'touches' parameters, and for decisions, it clarifies that no complete_intent is needed. However, it does not explicitly state when not to use it or list alternative tools for specific scenarios, 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.
update_intentA
Update an in-progress intent. Call when the work changes shape (revise summary or touches — collision checks run against these fields, so stale globs silently miss real collisions) or when work runs long (a call with just the id renews the TTL heartbeat; active intents expire after ~48h without one). Calling with just the id ALSO returns fresh overlaps — the cheap mid-session collision re-check, since a post-time check goes stale over a long session. Treat a warn here exactly like a warn at post time: tell your user before proceeding. Never use this to finish work — call complete_intent for that.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The intent id returned by post_intent. | |
| title | No | Revised short headline, ≤80 chars. | |
| branch | No | Git branch, if it has changed. | |
| summary | No | Revised one-paragraph summary: what + why. | |
| touches | No | Revised repo-relative glob patterns. Replaces the existing list — include all globs, not just new ones. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations were provided, so the description carries full burden for behavioral disclosure. It excellently covers key behaviors: the collision-check dependency on stale globs ('stale globs silently miss real collisions'), the TTL heartbeat mechanism with explicit expiry ('active intents expire after ~48h without one'), the side-effect of returning fresh overlaps when calling with just the id, and the importance of treating 'warn' responses seriously. This is comprehensive for a mutation tool.
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?
The description is compact yet dense with information, using front-loaded key points (verb, resource, when-to-use) then expanding logically. Every sentence adds substantive value: purpose, use-cases, side-effect, warning, and explicit exclusion. No redundancy or filler. It efficiently uses punctuation (semicolons, dashes, parentheses) to pack information without verbosity.
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 complexity of this tool (5 parameters, mutation, TTL-aware, collision-sensitive) and the absence of an output schema, the description is remarkably complete. It covers all critical aspects: usage triggers, parameter semantics, side-effects (overlaps, warn), failure modes (stale globs), lifecycle (TTL expiry), and what not to do (complete_intent). The description fully compensates for missing annotations and output schema.
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 description coverage is 100%, so the baseline is 3. However, the description adds significant meaning beyond the schema: it explains the impact of stale globs on collision detection ('collision checks run against these fields'), clarifies that calling with just the id 'returns fresh overlaps' (a behavioral side-effect not in any parameter description), and gives real-world time context ('~48h'). This elevates the score well above baseline.
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 'Update an in-progress intent' as the primary purpose, with specific verbs (update, revise, renew) and resources (summary, touches, TTL). It distinguishes itself from 'complete_intent' by explicitly stating 'Never use this to finish work — call complete_intent for that.' This matches the sibling list and provides clear differentiation.
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 provides explicit guidance on when to use the tool: 'Call when the work changes shape' (revise summary or touches) or 'when work runs long' (renew TTL heartbeat). It also states what NOT to do ('Never use this to finish work') and points to a sibling alternative ('call complete_intent for that'). Additionally, it warns about treating a 'warn' response similarly to post-time checks, giving clear behavioral context.
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. Dates show when Glama detected each change.
5 tool updates
v0.1.0- First observed
complete_intent - First observed
list_intents - First observed
mark_intent_landed - First observed
post_intent - First observed
update_intent
TDQS
Each tool has a clearly distinct lifecycle phase: post_intent for starting, list_intents for querying, update_intent for mid-work adjustments, complete_intent for closing, and mark_intent_landed for post-completion git confirmation. There is no functional overlap between any two tools.
All tool names follow a consistent verb_noun pattern with underscores (post_intent, list_intents, update_intent, complete_intent, mark_intent_landed), using clear imperative verbs. The pattern is uniform and predictable.
5 tools is well-scoped for a full lifecycle management server (create, read, update, delete/complete, and a specialized post-completion action). Each tool covers a necessary step without unnecessary redundancy.
The tool surface provides complete lifecycle coverage: intent creation with collision detection, query by multiple modes, live update with re-check, completion with rich outcome, and post-completion git tracking. No obvious gaps for the stated purpose of coordinating developer work.
Maintenance
Related MCP Connectors
- AxisOAuthdev.useaxis
Coding agents from Claude Code, Cursor and Codex claim jobs and lock files on one shared board.
Coordination for AI coding agents: declare plans, catch design conflicts early, share team memory.
Shared control plane for AI coding agents — tasks, memory, decisions, file locks. 12 tools.
- ParleyOAuthdev.weldra
Coordination hub for AI coding agents: message teammates, ask humans, audit every event.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceA coordination layer for coding agents that provides memorable identities, inbox/outbox messaging, searchable message history, and file lease management to prevent conflicts. Uses Git for human-auditable artifacts and SQLite for fast queries, enabling multiple agents to collaborate across projects without stepping on each other.2,128MIT
- AlicenseNot gradedqualityDmaintenanceCoordination layer for AI coding agents working on the same codebase. Adds file locks, shared project memory, and cross-machine file sync so Claude Code, Cursor, Windsurf, and other MCP agents stop overwriting each other.50Apache 2.0
- AlicenseAqualityCmaintenanceShared, versioned memory and governance control plane for AI coding agents. Compiler pipeline resolves architectural decision conflicts across Claude Code, Cursor, and custom agent fleets.35MIT
- AlicenseAqualityAmaintenanceCoordination for parallel coding agents: TTL file claims stored in the git common dir (visible across all worktrees), enforcement hooks that block colliding edits, agent presence, handoff notes, and a git-committed lessons knowledge base with BM25 search. Single static Go binary — no server, no database.81MIT
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/sledmonkey/getflightplan'
If you have feedback or need assistance with the MCP directory API, please join our Discord server