Skip to main content
Glama
Abacore-net

acn-preflight-mcp

by Abacore-net

ACN Preflight

Python client and MCP server for the hosted ACN Preflight Engine at https://preflight.abacore.net.

One engine exposes three tools:

  • bounty_reality_check: fresh public GitHub issue reality check.

  • repo_contribution_readiness: repository contribution-readiness preflight.

  • payment_preflight: Base payment-surface technical preflight.

The paid tools return the hosted service's HTTP 402 response and order payload until a valid access token is supplied.

Install

pip install acn-preflight
uvx --from acn-preflight acn-preflight --help
uvx --from acn-preflight acn-preflight-mcp

Related MCP server: dyoe-agent-tools-mcp

CLI

acn-preflight bounty https://github.com/owner/repo/issues/123
acn-preflight repo https://github.com/python/cpython --change-type docs
acn-preflight payment --chain base --address 0xYOUR_WALLET_ADDRESS
acn-preflight x402

MCP

Run acn-preflight-mcp to expose all three capabilities from one stdio MCP server.

Security boundary

This repository contains only the public client and MCP integration layer. It intentionally excludes payment recipient configuration, wallet material, safety-gate state, backup configuration, deployment guards, private evidence, and private ACN repository history.

License

Apache-2.0.

Available Tools

3 tools
bounty_reality_checkA

Check current public GitHub evidence for a bounty or issue before contributing.

ParametersJSON Schema
NameRequiredDescriptionDefault
issue_urlYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. 'Check current public GitHub evidence' communicates a read-only verification behavior and the data source, which is useful. It does not disclose potential rate limits, authentication needs, or failure behavior, but the operation appears inherently non-destructive.

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, front-loaded sentence with no filler. It efficiently communicates the tool's purpose and timing without unnecessary detail.

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

Completeness4/5

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

This is a simple one-parameter tool with an output schema, so the return format does not need to be in the description. The description covers what the tool does and when to use it. The main gap is the lack of parameter semantics and explicit sibling differentiation, but the low complexity keeps this from being a serious deficiency.

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?

Schema description coverage is 0% and the description does not reference the required issue_url parameter at all. While the parameter name is suggestive, no format, example, or clarification is given about what URL should be supplied, especially since the description mentions both 'bounty or issue' but the parameter is only issue_url.

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 uses a specific verb ('Check') and identifies the resource ('current public GitHub evidence for a bounty or issue') along with the intended timing ('before contributing'). It is clearly distinct from sibling tools like repo_contribution_readiness and payment_preflight, though it does not explicitly name them.

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 phrase 'before contributing' gives an explicit usage context, signaling when this tool is relevant. However, it does not mention when not to use it or how it compares to the sibling tools, so it stops short of full alternative guidance.

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

payment_preflightB

Run technical payment preflight. Without paid access this returns the hosted HTTP 402 order payload.

ParametersJSON Schema
NameRequiredDescriptionDefault
chainYes
amountNo
addressYes
access_tokenNo
token_contractNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.1/5.0
Behavior3/5

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

With no annotations provided, the description carries the behavioral burden. It does disclose a meaningful conditional behavior: without paid access it returns a hosted HTTP 402 order payload. Still, it does not clarify whether the tool has side effects, how successful access behaves, or any authorization requirements beyond the vague 'paid access'.

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?

Two short sentences with no filler. The main purpose is front-loaded, and the conditional behavior is stated efficiently. Every clause 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 five parameters, no annotations, and no schema-level descriptions, so the description must compensate, but it covers only one behavioral outcome. It omits how the parameters interact, what a successful preflight returns, and when optional fields like amount or token_contract should be supplied.

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

Parameters1/5

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

Schema description coverage is 0%, and the description does not explain any of the five parameters (chain, address, amount, access_token, token_contract). The parameter names are somewhat self-explanatory, but the tool description provides no additional meaning or usage context for any of them.

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 uses a specific verb ('Run') and resource ('technical payment preflight') and adds a concrete behavioral detail about returning the hosted HTTP 402 order payload. It is clearly distinct from the sibling tools, although it does not explicitly contrast itself with them and 'technical payment preflight' remains somewhat jargon-heavy.

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 phrase 'Run technical payment preflight' implies this is the tool to use when a payment preflight is needed, and the 'Without paid access...' clause gives conditional context. However, it does not explicitly state when to use this tool versus alternatives, nor does it describe preconditions or exclusions.

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

repo_contribution_readinessC

Assess repository contribution readiness. Without paid access this returns the hosted HTTP 402 order payload.

ParametersJSON Schema
NameRequiredDescriptionDefault
repo_urlYes
change_typeNo
access_tokenNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations provided, the description bears the full burden of disclosing behavioral traits. It does mention one specific behavior: 'Without paid access this returns the hosted HTTP 402 order payload,' which is useful. However, it does not disclose whether the tool is read-only, whether it makes network calls, how access_token affects behavior, or any side effects. This is minimal disclosure for a tool that likely interacts with external systems.

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 consists of two concise sentences. The first front-loads the core purpose, and the second adds a critical behavioral detail about the 402 fallback. There is no extraneous content, and both sentences earn their place. It is appropriately sized and well-structured.

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 has three parameters, no annotations, and only a brief mention of the 402 fallback, the description is incomplete. It does not explain what each parameter is for, how to use the access_token, when the paid access applies, or any prerequisites for successful invocation. While an output schema exists, the description still fails to provide enough context for an agent to select and call the tool correctly.

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

Parameters1/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 compensate by explaining the meaning and usage of parameters like repo_url, change_type, and access_token. It does not mention any of them. The description only states the overall purpose and a payment fallback behavior, leaving agents to infer parameter semantics purely from their names, which is insufficient.

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 opens with 'Assess repository contribution readiness,' which is a specific verb and resource, clearly indicating the tool's function. It does not explicitly contrast it with sibling tools like bounty_reality_check or payment_preflight, but the phrase 'without paid access' hints at a payment-related context that loosely differentiates it. Overall, the purpose is clear, though not fully distinguished from alternatives.

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 guidance on when to use this tool versus the sibling tools 'bounty_reality_check' or 'payment_preflight.' There is no mention of conditions, exclusions, or alternatives. The only contextual clue is the 402 payment reference, but that does not help an agent decide between this and related tools.

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.

  1. 3 tool updatesv0.1.0
    • First observedbounty_reality_check
    • First observedpayment_preflight
    • First observedrepo_contribution_readiness

TDQS

B3.2/5.0

Scored across 3 tools

Disambiguation4/5

Each tool targets a distinct preflight concern: bounty evidence, repo readiness, and payment. However, two tools return the same 402 payload, so an agent may not know which one to call when access is blocked.

Naming Consistency4/5

All names use snake_case and follow a compound noun pattern, which is internally consistent. The lack of a clear verb_noun structure is a minor deviation but not confusing.

Tool Count5/5

With only three tools, the server is tightly scoped to its preflight purpose. Every tool earns its place and the count is not excessive.

Completeness2/5

Two tools are gated behind paid access and return the same unusable 402 payload, creating dead ends. There is no way to unlock or proceed after those responses, so the surface is practically incomplete for agents.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Crypto compliance tools for AI-agent payments: screen any address for sanctions, frozen-stablecoin and hacker/mixer exposure across 8+ chains, trace fund taint, and get an allow/review/decline decision before settlement. Free keyless address checks; deeper endpoints are x402-payable.
    134 npm
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables per-request paid AI analysis of public URLs, condition verification, and AI consultation via x402 micropayments on Base, with no account or subscription.
    1 npm
    -