← Back to search

aethis-mcp

GitHub Actions Scanned 20d ago

MCP server for the Aethis developer API — eligibility checks via Claude, Cursor, Windsurf

C
66.4 / 100

Versions

0.15.1latest
Jul 25, 2026
0.15.0
Jul 21, 2026
0.13.0
Jul 20, 2026
0.10.0
Jul 4, 2026
0.9.0
May 29, 2026
+ show 10 moreshow less
0.7.2
May 25, 2026
0.7.1
May 22, 2026
0.7.0
May 22, 2026
0.4.3
May 11, 2026
0.3.0
May 6, 2026
0.2.6
May 4, 2026
0.2.2
Apr 7, 2026
0.2.1
Apr 7, 2026
0.2.0
Apr 7, 2026
0.1.0
Apr 5, 2026
PermissionsTool SafetyAuthAnnotationsCode QualityStabilitySpecVuln HistoryAuthorTransparencyCommunity

Tools 33

aethis_schema
annotations: none low

Get the input fields required for an eligibility check. Returns field names, types, descriptions, and allowed values. Use this before calling aethis_decide.

ruleset_id string
aethis_decide
annotations: none low

Evaluate eligibility against either a single published ruleset (ruleset_id) or a composed rulebook (rulebook_id). Provide exactly one. A rulebook composes multiple rulesets via outcome_logic — use it for the whole-form decision (e.g. `aethis/uk-fsm`). A ruleset is one section in isolation (e.g. `aethis/uk-fsm/child-eligibility`). Returns eligible/not_eligible/undetermined with optional trace and explanation. When undetermined, includes next_question and optimal_path. Rulebook evaluation always requires an API key; ruleset evaluation can be anonymous against public rulesets.

ruleset_id string rulebook_id string include_trace boolean include_explanation boolean include_graph_overlay boolean
aethis_next_question
annotations: none low

Get the optimal next question for a conversational eligibility check. Call with empty field_values for the first question, then add answers and call again until decision is reached. When the ruleset author attached notes to a question (e.g. why it is asked, or legal background), they are surfaced under a Notes block.

ruleset_id string
aethis_graph
annotations: none low

Get the ruleset-map graph for a single published ruleset (ruleset_id) or a composed rulebook (rulebook_id) — provide exactly one. Returns {ruleset_id|rulebook_id, slug, name, graph: {nodes, edges, sections, stats}, mermaid}: each node

ruleset_id string rulebook_id string
aethis_explain
annotations: none low

Get human-readable descriptions of the rules in a ruleset, including criteria groups, requirements, and exception paths.

ruleset_id string
aethis_explain_failure
annotations: none low

Diagnose why a ruleset produced an unexpected outcome for specific test inputs. Use during rule authoring when a test fails — returns the diagnosis, criteria with DSL metadata (waivable, review_required), and a targeted hint for fixing the rule.

test_name string ruleset_id string
aethis_list_projects
annotations: none low

List all projects in the current tenant. Returns project IDs, names, domains, and latest ruleset information.

project_id string
aethis_list_rulesets
annotations: none low

List all rule rulesets for a project, including version history. Shows ruleset ID, human-readable name (the section title the ruleset covers, e.g.

project_id string
aethis_discover_rulesets
annotations: none low

List public showcase rulesets across all tenants. No authentication required. Use this for first-time discovery, demos, or whenever the user asks

limit number offset number
aethis_list_rulebooks
annotations: none low

List rulebooks (composed wholes that bridge multiple rulesets) in the current tenant. Returns rulebook_id, slug (e.g. `aethis/uk-fsm`), name, domain, status (draft/active/archived), version, outcome_logic (the composition Expr AST), ruleset_refs, and timestamps. Use this when the user asks

rulebook_id string
aethis_usage
annotations: none low

Show the caller

rulebook_id string
aethis_rulebook_schema
annotations: none low

Get the composition + aggregated input fields for a rulebook. Returns the outcome_logic Expr AST (how the bridged rulesets compose, e.g. `A AND (B OR C)`), the list of bridged rulesets (ruleset_name, ruleset_id, slug, status), and the union of all required input fields. Use this BEFORE aethis_decide on a rulebook_id to know what field_values to supply, or to inspect how a rulebook is wired. Pass a rulebook slug (e.g. `aethis/uk-fsm`) or opaque id (`rb_*`).

rulebook_id string
aethis_create_rulebook
annotations: none low

Create a new Rulebook — the composed-whole execution unit that bridges multiple rulesets (the parts) via outcome_logic. Created empty: no rulesets, no field vocabulary, no tests, status=

name string slug string domain string description string
aethis_update_rulebook
annotations: none low

Update a Rulebook

name string slug string description string rulebook_id string
aethis_archive_project
annotations: none low

Archive a project. Archived projects are preserved but excluded from listing. This is permanent.

project_id string
aethis_archive_ruleset
annotations: none low

Archive a rule ruleset. Archived rulesets are preserved but excluded from /decide resolution. This is permanent.

ruleset_id string
aethis_create_ruleset
annotations: none low

Create a new rule ruleset with source text and test cases (TDD). Test cases are required. After creation, call aethis_generate_and_test.

name string domain string section_id string source_text string
aethis_list_guidance
annotations: none low

List all guidance hints accumulated for a project. Shows the text, source, and active status of each hint. Use before adding new guidance to avoid duplicates.

project_id string
aethis_add_guidance
annotations: none low

Add a guidance hint to a project. Use for domain knowledge not in the source text. Then call aethis_generate_and_test to regenerate.

project_id string guidance_text string
aethis_add_domain_guidance
annotations: none low

Add a guidance hint at domain level — applies to ALL projects in the domain, not just one project.

notes string domain string guidance_text string
aethis_list_domain_guidance
annotations: none low

List all active guidance hints for a domain. Returns cross-section hints that apply to all projects in the domain.

domain string
aethis_discover_sections
annotations: none low

Discover the logical sections of source legislation for a domain.

name string domain string content string
aethis_refine_sections
annotations: none low

Add guidance to improve section discovery, then re-discover sections.

name string domain string content string feedback string
aethis_validate_sections
annotations: none low

Compare discovered sections against an expected specification.

domain string
aethis_discover_fields
annotations: none low

Discover input fields from the project

project_id string
aethis_refine_fields
annotations: none low

Add guidance to improve field discovery, then re-discover. Use when fields are missing, misnamed, or enum values are incomplete. Adds a field_extraction guidance hint and re-runs discovery.

feedback string project_id string
aethis_validate_fields
annotations: none low

Assert that the discovered fields match an expected field specification.

key string sort string project_id string
aethis_set_field_spec
annotations: none low

Store the expected field specification for a project.

key string sort string project_id string
aethis_generate_and_test
annotations: none low

Generate rules from source text and run all test cases. Triggers generation, polls until complete, then runs tests. Returns pass/fail with regression detection. Takes 60-120 seconds.

project_id string
aethis_refine
annotations: none low

Refine an existing published ruleset: add optional feedback, then make the MINIMAL edit to fix failing test cases while keeping passing tests green, and re-run the full suite (seed-from-existing incremental re-authoring). Use this to fix a specific finding without re-authoring the whole section; use aethis_generate_and_test for a from-scratch rebuild.

feedback string project_id string
aethis_publish
annotations: none low

Publish the latest rule ruleset. Runs tests first and refuses if they fail unless force=true. Auto-deprecates previous active ruleset.

name string force boolean label string project_id string
aethis_review_project
annotations: none low

Review an authoring project against the deterministic authoring-coach rubric and get skill-building feedback. Returns a score, per-check evidence across grounding / process / lifecycle, strengths, and the single highest-leverage next improvement. Advisory only — it never blocks publishing. The deterministic report needs no LLM key; set coach=true (with an Anthropic key) to add an LLM-synthesised coaching narrative on top of the computed checks.

project_id string
aethis
annotations: none low

Permissions 4

network medium
Server uses network capabilities via: fetch()
filesystem low
Server uses filesystem capabilities via: fs/promises
shell high
Server uses shell capabilities via: child_process
env_vars low
Server uses env_vars capabilities via: process.env

Scan Findings 83

low
Tool 'aethis_schema' has no annotations annotation_checker · 100%
low
Tool 'aethis_decide' has no annotations annotation_checker · 100%
low
Tool 'aethis_next_question' has no annotations annotation_checker · 100%
low
Tool 'aethis_graph' has no annotations annotation_checker · 100%
low
Tool 'aethis_explain' has no annotations annotation_checker · 100%
low
Tool 'aethis_explain_failure' has no annotations annotation_checker · 100%
low
Tool 'aethis_list_projects' has no annotations annotation_checker · 100%
low
Tool 'aethis_list_rulesets' has no annotations annotation_checker · 100%
low
Tool 'aethis_discover_rulesets' has no annotations annotation_checker · 100%
low
Tool 'aethis_list_rulebooks' has no annotations annotation_checker · 100%
low
Tool 'aethis_usage' has no annotations annotation_checker · 100%
low
Tool 'aethis_rulebook_schema' has no annotations annotation_checker · 100%
low
Tool 'aethis_create_rulebook' has no annotations annotation_checker · 100%
low
Tool 'aethis_update_rulebook' has no annotations annotation_checker · 100%
low
Tool 'aethis_archive_project' has no annotations annotation_checker · 100%
low
Tool 'aethis_archive_ruleset' has no annotations annotation_checker · 100%
low
Tool 'aethis_create_ruleset' has no annotations annotation_checker · 100%
low
Tool 'aethis_list_guidance' has no annotations annotation_checker · 100%
low
Tool 'aethis_add_guidance' has no annotations annotation_checker · 100%
low
Tool 'aethis_add_domain_guidance' has no annotations annotation_checker · 100%
low
Tool 'aethis_list_domain_guidance' has no annotations annotation_checker · 100%
low
Tool 'aethis_discover_sections' has no annotations annotation_checker · 100%
low
Tool 'aethis_refine_sections' has no annotations annotation_checker · 100%
low
Tool 'aethis_validate_sections' has no annotations annotation_checker · 100%
low
Tool 'aethis_discover_fields' has no annotations annotation_checker · 100%
low
Tool 'aethis_refine_fields' has no annotations annotation_checker · 100%
low
Tool 'aethis_validate_fields' has no annotations annotation_checker · 100%
low
Tool 'aethis_set_field_spec' has no annotations annotation_checker · 100%
low
Tool 'aethis_generate_and_test' has no annotations annotation_checker · 100%
low
Tool 'aethis_refine' has no annotations annotation_checker · 100%
low
Tool 'aethis_publish' has no annotations annotation_checker · 100%
low
Tool 'aethis_review_project' has no annotations annotation_checker · 100%
low
Tool 'aethis' has no annotations annotation_checker · 100%
info
Sandbox failed to start for behavioral verification behavioral_verifier · 100%
medium
Vulnerable dependency: @modelcontextprotocol/sdk@1.12.1 (GHSA-345p-7cg4-v4c7) dependency_analyzer · 95%
medium
Vulnerable dependency: @modelcontextprotocol/sdk@1.12.1 (GHSA-8r9q-7v3j-jr4g) dependency_analyzer · 95%
medium
Vulnerable dependency: @modelcontextprotocol/sdk@1.12.1 (GHSA-w48q-cv73-mx4w) dependency_analyzer · 95%
medium
Vulnerable dependency: vitest@3.0.0 (GHSA-5xrq-8626-4rwp) dependency_analyzer · 95%
medium
Vulnerable dependency: vitest@3.0.0 (GHSA-9crc-q9x8-hgqq) dependency_analyzer · 95%
medium
Buffer.from base64 in Aethis-ai-aethis-mcp-79a0c87/scripts/build-release-artefact.mjs:65 entropy_analyzer · 75%
info
package.json metadata manifest_parser · 100%
info
Tool: aethis_schema manifest_parser · 70%
info
Tool: aethis_decide manifest_parser · 70%
info
Tool: aethis_next_question manifest_parser · 70%
info
Tool: aethis_graph manifest_parser · 70%
info
Tool: aethis_explain manifest_parser · 70%
info
Tool: aethis_explain_failure manifest_parser · 70%
info
Tool: aethis_list_projects manifest_parser · 70%
info
Tool: aethis_list_rulesets manifest_parser · 70%
info
Tool: aethis_discover_rulesets manifest_parser · 70%
info
Tool: aethis_list_rulebooks manifest_parser · 70%
info
Tool: aethis_usage manifest_parser · 70%
info
Tool: aethis_rulebook_schema manifest_parser · 70%
info
Tool: aethis_create_rulebook manifest_parser · 70%
info
Tool: aethis_update_rulebook manifest_parser · 70%
info
Tool: aethis_archive_project manifest_parser · 70%
info
Tool: aethis_archive_ruleset manifest_parser · 70%
info
Tool: aethis_create_ruleset manifest_parser · 70%
info
Tool: aethis_list_guidance manifest_parser · 70%
info
Tool: aethis_add_guidance manifest_parser · 70%
info
Tool: aethis_add_domain_guidance manifest_parser · 70%
info
Tool: aethis_list_domain_guidance manifest_parser · 70%
info
Tool: aethis_discover_sections manifest_parser · 70%
info
Tool: aethis_refine_sections manifest_parser · 70%
info
Tool: aethis_validate_sections manifest_parser · 70%
info
Tool: aethis_discover_fields manifest_parser · 70%
info
Tool: aethis_refine_fields manifest_parser · 70%
info
Tool: aethis_validate_fields manifest_parser · 70%
info
Tool: aethis_set_field_spec manifest_parser · 70%
info
Tool: aethis_generate_and_test manifest_parser · 70%
info
Tool: aethis_refine manifest_parser · 70%
info
Tool: aethis_publish manifest_parser · 70%
info
Tool: aethis_review_project manifest_parser · 70%
info
Tool: aethis manifest_parser · 75%
info
Transport: stdio manifest_parser · 90%
info
Required env vars (19) manifest_parser · 80%
info
Sandbox failed to start for output poisoning scan output_poisoning · 100%
medium
Permission: network access detected permission_analyzer · 70%
low
Permission: filesystem access detected permission_analyzer · 90%
high
Permission: shell access detected permission_analyzer · 95%
low
Permission: env_vars access detected permission_analyzer · 90%
info
SBOM generated: 195 components sbom_generator · 100%
medium
No build provenance detected (SLSA L0) slsa_assessor · 90%