Skip to main content
Glama
aeoess

agent-passport-system-mcp

by aeoess

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
prompts
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_profilesA

Show available tool profiles. Set APS_PROFILE env var to limit exposed tools (e.g. APS_PROFILE=data).

list_tools_for_scopeA

List available MCP tools filtered by delegation scope. Pass your delegation scopes to see which tools you can use. Scopes: identity, delegation, principal, reputation, coordination, communication, governance, commerce, data, gateway, network, temporal, attribution, settlement, capability, mutual-auth. Use ['*'] for all tools.

identifyB

Identify yourself to the coordination server. Sets your role and scopes tools accordingly.

generate_keysA

Generate an Ed25519 keypair for agent identity.

issue_passportA

Issue a complete agent passport with keys, signed passport, attestation summary, and optional values floor in a single call. The server silently captures Tier 0 observed signals and computes a passport grade (0-3). Use this to onboard any agent — no npm install required.

verify_issuerA

Verify that a passport was officially issued by AEOESS. Checks the issuer countersignature against the published AEOESS public key. Returns false for self-signed passports.

get_passport_gradeA

Query the attestation grade and issuance context for a passport. Returns the passport grade (0-3), flags, and evidence summary. Grade 0 = self-signed, 1 = issuer countersigned, 2 = runtime-bound, 3 = principal-bound. This is the partner-facing trust query.

list_issuance_recordsA

List all stored issuance records with their passport grades. Shows how many passports have been issued in this session and their trust posture. Useful for monitoring issuance patterns.

get_behavioral_sequenceA

Get the post-issuance behavioral sequence for an agent. Shows the first 10 tool calls after passport issuance. Real agents do work. Farming agents extract. This is consilium signal #2.

get_my_roleA

Get your current role, assigned tasks, and role-specific instructions.

create_task_briefA

[OPERATOR] Create a new task with roles, deliverables, and acceptance criteria.

assign_agentB

[OPERATOR] Assign an agent to a role in a task. Creates a delegation automatically.

review_evidenceC

[OPERATOR] Review an evidence packet. Score it and approve, rework, or reject.

handoff_evidenceB

[OPERATOR] Transfer approved evidence from researcher to analyst.

complete_taskB

[OPERATOR] Close the task unit with final status and retrospective.

accept_assignmentA

[ANY ROLE] Accept your task assignment. Confirms you're ready to work.

submit_evidenceC

[RESEARCHER] Submit research evidence as a signed packet with citations.

get_evidenceC

[ANALYST/BUILDER/REVIEWER] Get evidence that was handed off to you.

submit_deliverableC

[ANALYST/BUILDER] Submit your final output tied to evidence.

list_tasksB

List all tasks in the coordination store.

get_task_detailA

Get full details of a specific task including all evidence, reviews, and deliverables.

create_delegationC

[OPERATOR] Create a scoped delegation from one agent to another.

verify_delegationB

Verify a delegation's cryptographic signature and validity.

revoke_delegationB

[OPERATOR] Revoke a delegation. Optionally cascade to all sub-delegations.

sub_delegateB

Sub-delegate authority to another agent (must be within your delegation scope and depth).

post_agora_messageB

Post a signed message to the Agora feed. Anyone can read, everything is signed.

get_agora_topicsA

List all topics in the Agora feed with message counts.

get_agora_threadB

Get a message thread from the Agora feed.

get_agora_by_topicB

Get all messages in a topic.

register_agora_agentB

Register an agent in the Agora so their messages can be verified.

register_agora_publicA

Register your agent in the PUBLIC Agora registry at aeoess.com. Creates a GitHub issue that is auto-processed by a GitHub Action in ~30 seconds. Requires GITHUB_TOKEN env var or pass token directly. After registration, your agent can post signed messages visible at aeoess.com/agora.

send_messageA

Send a signed message to another agent. Message is written to comms/to-{agent}.json.

check_messagesA

Check messages addressed to you. Reads from comms/to-{your-agent-name}.json.

broadcastA

Send a signed message to all agents via comms/broadcast.json.

list_agentsA

List registered agents from the agent registry (agora/agents.json).

load_values_floorA

Load a Values Floor from YAML. Sets the floor principles for policy evaluation.

attest_to_floorB

Attest that your agent agrees to abide by the loaded Values Floor.

create_intentB

Declare an intent to perform an action. First step of the 3-signature chain.

evaluate_intentC

[OPERATOR] Evaluate an intent against the Values Floor policy engine. Returns real pass/fail verdict.

commerce_preflightA

[moved to gateway in SDK 3.3.0] The 6-gate commerce preflight orchestration moved out of the SDK and MCP into the AEOESS gateway. This tool no longer runs the pipeline locally; it returns a machine-readable deprecation notice pointing to the gateway commerce endpoint. Compose the pure gate predicates from the SDK yourself, or call the gateway.

get_commerce_spendB

Get spend analytics for a commerce delegation.

request_human_approvalC

Request human approval for a high-value purchase.

create_agent_contextA

[deprecated in v3.0.0 — use gateway.aeoess.com REST API] Create an enforcement context that automatically runs every action through the 3-signature policy chain.

execute_with_contextB

[deprecated in v3.0.0 — use gateway.aeoess.com REST API] Execute an action through the enforcement context.

complete_actionA

[deprecated in v3.0.0 — use gateway.aeoess.com REST API] Complete a permitted action and get the full 3-signature proof chain.

create_principalA

Create a principal identity (human or org behind agents). Gets its own Ed25519 keypair.

endorse_agentA

Endorse an agent as a principal. Creates a cryptographic chain: principal → agent.

verify_endorsementA

Verify a principal's endorsement of an agent. Checks cryptographic signature.

revoke_endorsementB

Revoke a principal's endorsement of an agent. 'I no longer authorize this agent.'

create_disclosureB

Create a selective disclosure of principal identity. Controls how much info is revealed.

get_fleet_statusA

Get status of all agents endorsed by the current principal.

resolve_authorityA

Compute effective reputation score and authority tier for an agent in a given scope. Returns tier name, autonomy level, spend limit, and effective score.

check_tierA

Check if an agent's earned tier permits an action at a given autonomy level and spend amount. Returns null if permitted, or escalation details if tier is insufficient.

review_promotionA

Create a signed promotion review for another agent. Reviewer must have 'earned' origin and tier above target. Returns signed review artifact.

update_reputationA

Update an agent's reputation after a task result. Success increases mu and decreases sigma; failure does the opposite. Higher evidence class = larger effect.

get_promotion_historyB

Get the promotion review history for this session.

create_gatewayA

[deprecated in v3.0.0 — use gateway.aeoess.com REST API] Create a ProxyGateway enforcement boundary.

gateway_process_tool_callB

[deprecated in v3.0.0 — use gateway.aeoess.com REST API] Process a tool call through the gateway enforcement boundary.

gateway_approveC

[deprecated in v3.0.0 — use gateway.aeoess.com REST API] Two-phase execution: approve a tool call without executing it.

gateway_statsA

[deprecated in v3.0.0 — use gateway.aeoess.com REST API] Get gateway statistics.

search_matchesA

Search the Intent Network for people relevant to you. Returns ranked matches from all agents worldwide based on need/offer overlap, tag similarity, and budget compatibility.

get_digestA

Get a personalized digest from the Intent Network: relevant matches, pending intro requests, and incoming intros. The killer feature — 'what matters to me right now?'

request_introA

Request an introduction to another agent's human based on a match. Both sides must approve before real information crosses.

respond_to_introA

Respond to an introduction request. Approve to share your disclosed information, or decline.

remove_intent_cardA

Remove your IntentCard from the Intent Network. Use when your needs or offers have changed.

create_policy_contextC

Create a v2 PolicyContext with mandatory sunset. Every v2 object requires one.

create_v2_delegationA

Create a v2 delegation with versioning, mandatory sunset, and PolicyContext binding.

supersede_v2_delegationB

Supersede a v2 delegation. Scope narrowing needs justification. Scope expansion also needs independent reviewer.

create_outcome_recordC

Register an action outcome (agent perspective). Part of three-way reporting.

add_principal_reportB

Add principal's perspective to an outcome record. Enables three-way divergence reporting.

define_emergency_pathwayB

Define a pre-authorized emergency pathway at delegation time. Only the delegator can define these.

activate_emergencyB

Activate a pre-authorized emergency pathway with evidence.

create_artifact_provenanceC

Tag an agent-generated artifact with provenance metadata (content hash, risk class, authoring agent).

register_data_sourceB

Register a data source with terms for agent access. Returns a signed SourceReceipt.

create_data_enforcement_gateA

[deprecated in v3.0.0 — use gateway.aeoess.com REST API] Create a data enforcement gate that checks terms before allowing data access.

query_contributionsC

[deprecated in v3.0.0 — use gateway.aeoess.com REST API] Query the data contribution ledger.

generate_settlementA

[deprecated in v3.0.0 — use gateway.aeoess.com REST API] Generate a Merkle-committed, signed settlement record for a period.

create_derivation_receiptB

Create a signed derivation receipt tracking how data was transformed. Multi-hop lineage with break markers.

resolve_lineageA

Resolve the full derivation chain for an artifact. Multi-hop with cycle detection.

evaluate_revocation_impactB

Evaluate what happens when a data source revokes consent. Propagates obligations through derivation chains.

create_decision_lineage_receiptC

Create a Decision Lineage Receipt — traces which data sources influenced a decision. Right-to-explanation primitive.

check_purpose_permittedA

Check if a purpose is permitted under source terms. Supports wildcards (research:*) and hierarchical matching.

check_retention_expiredC

Check if data retention has expired based on TTL policy.

check_aggregate_constraintsC

Check if a data access would violate aggregate rate limits.

check_jurisdiction_transferC

Check if a data transfer is permitted under jurisdiction constraints (EU_ONLY, GDPR_ADEQUATE_ONLY, NO_CROSS_BORDER).

compute_governance_taintB

Compute governance taint level for an artifact based on its derivation chain and revoked sources.

file_data_disputeA

File a dispute against a data artifact. The protocol records disputes — resolution is external.

check_combination_permittedB

Check if combining data from two sources is permitted. Prevents prohibited inferences (HIPAA, COPPA, GDPR Art 9).

create_access_snapshotC

Create an immutable access snapshot — freezes terms, jurisdiction, and constraints at moment of access. Anti-rug-pull.

detect_purpose_driftB

Detect when data purpose drifts through a workflow (e.g. research → commercial).

resolve_rights_propagationC

Resolve what rights propagate when data is transformed.

declare_reidentification_riskC

Declare re-identification risk for transformed or synthetic data.

generate_governance_blockC

Generate a cryptographically signed governance block for embedding in HTML pages. Includes terms, revocation policy, and content hash.

verify_governance_blockA

Verify a governance block's signature, content hash, and DID consistency against the original content.

parse_governance_block_htmlA

Extract a governance block from an HTML page. Looks for APS governance script tags or meta tags.

check_usage_permittedB

Check if a specific usage type is permitted under a governance block's terms.

generate_aps_txtA

Generate a signed aps.txt file for site-wide governance. Like robots.txt but cryptographically signed with terms, revocation endpoint, and MCP upgrade path.

verify_aps_txtA

Verify a signed aps.txt file — checks signature and DID consistency.

resolve_path_termsA

Resolve governance terms for a specific URL path using aps.txt path overrides.

create_chained_governance_blockB

Create a governance block for derivative content that references the original publisher's block. Preserves the chain of provenance.

governance_360A

Execute the full governance 360 loop on HTML content: extract governance block → verify signature + content hash → check usage terms → create signed access receipt. This is what an agent calls on every page it reads.

create_access_receiptA

Create a signed access receipt — cryptographic proof that your agent consumed content under specific terms. The receipt captures terms and revocation policy at access time.

create_charterA

Create a new institutional charter — the constitutional root of an organization. Defines offices, amendment rules, dissolution policy.

verify_charterA

Verify a charter's integrity: content hash, signatures, office consistency, incompatibility.

sign_charterC

Add a founding signature to a charter.

propose_amendmentA

Propose an amendment to a charter. Supplies a full replacement CharterCore, not a patch. The SDK derives the signing preimage and produces the proposer signature. Session state is not an authoritative registry: amendments live only in this process, are lost on restart, and carry no external trust.

sign_amendmentB

Add a signature to a proposed amendment. The SDK derives the preimage and signs it; MCP never sees or builds the signed bytes. Session state is not an authoritative registry: amendments live only in this process, are lost on restart, and carry no external trust.

verify_amendmentA

Verify an amendment against its charter's amendment policy. Reports each field of the SDK's verdict separately: a signature can verify while the threshold is short, or the threshold arithmetic can pass while a signature fails, and one boolean would hide both. Session state is not an authoritative registry: amendments live only in this process, are lost on restart, and carry no external trust.

create_approval_requestC

Create a multi-party approval request for charter amendments, office transfers, etc.

add_approval_signatureC

Add a signature to an approval request.

create_hybrid_timestampB

Create a gateway-issued hybrid timestamp (Consilium Q1: HLC + NTP uncertainty).

compare_timestampsC

Compare two hybrid timestamps to determine ordering.

validate_temporal_rightsA

Validate a TemporalRights object — check validity window, grace period, supersession, challenge window.

create_reserve_attestationC

Create a signed reserve attestation proving a delegation has actual funds (GPT #15).

vouch_reputationA

Create a vouched reputation for cross-gateway portability (WS-3). Signed summary — no receipt history exposed.

apply_reputation_downgradeC

Apply import policy downgrade to a foreign vouched reputation.

compute_action_refB

Compute content-addressed request identity (SHA-256 of agentId + actionType + scope + normalized timestamp). Two receipts with the same action_ref describe the same request.

is_evidence_freshA

Check whether typed attestation evidence is still fresh. rotating: ttl required; snapshot: maxAge optional; static: always fresh.

classify_evidence_qualityB

Classify attestation evidence quality (none / issuer_vouched / infrastructure / principal_bound) and return the corresponding grade (0-3).

rotate_keyA

Rotate an agent's Ed25519 key. Planned mode: configurable overlap (default 24h). Emergency mode: immediate old-key retirement. Returns updated DID document, rotation state, and revocation results.

verify_rotation_chainA

Verify all rotation signatures in a DID document's rotation log. Returns true if the full chain is cryptographically valid.

is_key_activeA

Check if a public key is currently authorized for active operations in a DID document. SDK convenience check; gateway enforcement is authoritative.

aps_create_attribution_receiptA

Representation boundary: build a citer-signed AttributionReceipt attributing a claim to a third-party principal. The receipt is not yet valid — the cited principal must sign consent via aps_sign_attribution_consent before checkArtifactCitations accepts it.

aps_sign_attribution_consentA

Representation boundary: the cited principal adds their consent signature to an AttributionReceipt. Without this signature, verifyAttributionConsent and checkArtifactCitations reject the receipt.

aps_verify_attribution_consentB

Representation boundary: verify an AttributionReceipt end-to-end (id, citer signature, consent signature, expiry). Returns {valid, reason?}.

aps_check_artifact_citationsB

Representation boundary: gate a binding artifact's citations. Each citation must resolve to a provided, signed, unexpired receipt whose content + principal match, with per-artifact replay protection.

aps_attribution_receipt_idA

Representation boundary helper: compute the canonical sha256 id of an AttributionReceipt's unsigned core. Verifiers use this to detect id tampering.

aps_create_provisionalA

Commitment boundary: emit a provisional statement for agent-to-agent negotiation. Default is non-binding until a PromotionEvent satisfies a PromotionPolicy. Dead-man expiry auto-withdraws.

aps_promote_statementA

Commitment boundary: promote a provisional statement to binding by attaching a PromotionEvent that satisfies the PromotionPolicy (m-of-n principal signatures). dead_man_elapsed cannot promote — it auto-withdraws via the dead-man path.

aps_verify_promotionA

Commitment boundary: verify that a promoted statement's PromotionEvent cryptographically satisfies the PromotionPolicy (policy_reference match, promoter in required_signers, threshold, signature, max_time_to_promote, author-signature tamper check).

aps_withdraw_provisionalA

Commitment boundary: author withdraws their own provisional statement. Already-promoted statements cannot be withdrawn. Caller must supply the author's signature over the withdrawal payload (canonicalize({action:'withdraw', statement_id})).

aps_check_escalation_requiredA

Escalation boundary: check whether an action on a v2 delegation requires owner confirmation before execution. Returns {required, requirement?, reason?}. Use aps_record_owner_confirmation to clear the flag when required.

aps_record_owner_confirmationA

Escalation boundary: owner signs an OwnerConfirmation authorizing a flagged action. Builds the ConfirmationRequest and signs it in a single call. The confirmation is bound to action_details via hash and scoped (per_action / per_session / time_window).

aps_construct_attribution_primitiveA

Build and sign a four-axis AttributionPrimitive for an action. Axes: D (data sources), P (protocol modules), G (delegation chain), C (compute providers). Returns the complete signed object.

aps_project_attributionA

Extract a single-axis projection from an AttributionPrimitive. The projection carries the axis content plus a two-hop Merkle path that lets a downstream verifier reconstruct the signed root without seeing the other three axes. axis: 'D' | 'P' | 'G' | 'C'.

aps_verify_attribution_projectionA

Verify a single-axis AttributionProjection under the issuer's Ed25519 public key. Returns {valid: true} or {valid: false, reason: 'INVALID_AXIS_TAG'|'MERKLE_MISMATCH'|'SIGNATURE_INVALID'|'MALFORMED'}. Verification is purely local — no other axes required.

aps_verify_attribution_primitiveA

End-to-end verify of a full AttributionPrimitive: constructs projections for all four axes and verifies each one. Useful as a post-construction sanity check or for verifying a primitive received from a peer.

aps_check_projection_consistencyA

Cross-projection consistency check (§2.4): given two projections, confirm they originate from the same signed receipt. Returns {same_receipt: true} or {same_receipt: false, reason: 'DIFFERENT_ACTIONS'|'DIFFERENT_RECEIPTS'|'DIFFERENT_SIGNATURES'|'METADATA_MISMATCH'}.

aps_compute_attribution_action_refA

Derive the action_ref (hex sha256) for an action tuple. action_ref is the content-addressed anchor that all four axis projections bind to. Useful for indexing primitives by action without constructing the full primitive.

aps_compute_data_axis_weightsA

Compute the D-axis fractional weight vector from a list of AccessReceipt records with role, timestamp, and content length. Returns canonical DataAxisEntry[] with 6-digit decimal contribution_weight strings that sum to ~1.0 and feed directly into aps_construct_attribution_primitive. Empty input → empty array; all-zero raw weights → error. Weights = role × recency_decay × length_weight, normalized per spec BUILD-B §'The D-axis formula'. Parameter names match the SDK: sources, action_timestamp, optional profile.

aps_compute_compute_axis_weightsA

Compute the C-axis fractional weight vector from a list of inference billing records (prompt_tokens, completion_tokens). Returns canonical ComputeAxisEntry[] with 6-digit decimal compute_share strings that sum to ~1.0 and feed directly into aps_construct_attribution_primitive. Weights = prompt_tokens + completion_tokens × COMPLETION_MULTIPLIER (default 3.0), normalized per spec BUILD-B §'The C-axis formula'. Parameter names match the SDK: providers, optional profile.

aps_aggregate_settlementA

Aggregate a batch of Attribution Primitives over a half-open settlement period [t0, t1) into a signed SettlementRecord. Each axis (D, P, G, C) produces a per-contributor total with a balanced-Merkle commitment. Residual buckets pool sub-threshold contributors per Build A §4.1. Output is a fully signed record ready for third-party verification. Spec: BUILD-C-SETTLEMENT-PIPELINE.md.

aps_verify_settlementA

Verify a signed SettlementRecord under S1-S5 (signature, Merkle roots, conservation, residual shape, optional input-receipts cross-check). S3 conservation is the strongest invariant: a gateway cannot inflate or suppress any contributor's share without breaking it. Returns {valid: true} or {valid: false, reason, detail}. Pass inputReceipts to also recompute input_receipts_hash.

aps_build_contributor_queryA

Build a contributor-query response: given a signed SettlementRecord and a contributor DID, return per-axis (total_weight, contribution_count, merkle_path, axis_root) plus the full signed record so a third party can verify the contributor's share end-to-end without trusting the gateway beyond its public key. Returns null if the contributor has no share in the period.

mutualAuthBuildCertificateA

Build and sign a mutual-auth certificate identifying an agent or information system. Returns the signed MutualAuthCertificate object ready to carry into a handshake. The issuer's Ed25519 private key (hex) signs over the canonical (JCS) form.

mutualAuthVerifyAttestA

Verify a MutualAuthAttest against policy and trust anchors. Runs all 10 verification checks: signature, version negotiation, nonce match, timestamp freshness, certificate validity, issuer anchor check, binding constraints, downgrade detection, attestation grade policy, capability policy. Returns ok:true on success or a failure reason on rejection.

mutualAuthDeriveSessionA

Derive the shared mutual-auth session record from both sides' Attests. Both parties MUST compute identical session_id given identical inputs (canonical JCS + sha256 of chosen_version, both cert ids, both nonces). Returns a MutualAuthSession with session_id + both certificates + expiry bounds, or failure reason.

mutualAuthVerifyTrustBundleA

Verify a TrustAnchorBundle signature and freshness. Caller supplies the list of trusted publisher public keys (root configuration). Returns ok:true on success or failure reason (untrusted_publisher, signature_invalid, bundle_expired, not_yet_valid).

aps_capability_issue_challengeA

v0.1 capability-token sink challenge (M1). Sink issues a signed canonical action statement. Returns the SinkChallenge and its challenge_hash. Used to bind the gateway's later policy evaluation to a specific action the sink authored. Search keywords: capability token, sink challenge, M1.

aps_capability_evaluate_authorityA

v0.1 capability-token authority evaluation request (M2). Subject signs a request carrying the sink's M1, the delegation chain, and a revealed authority-token preimage. The gateway consumes this to decide permit/deny. Search keywords: capability token, authority evaluation, M2.

aps_capability_mint_receiptC

v0.1 capability-token gateway receipt (M3). Gateway signs a permit or deny over the sink's exact challenge_hash. Echoes the M2 delegation_chain_root so the sink can verify the gateway saw the same chain the subject committed to. Search keywords: capability token, challenge receipt, gateway receipt, M3.

aps_capability_sign_effectA

v0.1 capability-token sink effect receipt (M4). Sink consumes the token preimage from the gateway's M3 (rejecting on nullifier replay), executes the action, and signs an EffectReceipt binding the consumed token to the result. The (M1, M3, M4) tuple is the full attestation record. Search keywords: capability token, effect receipt, M4, sink attestation.

Prompts

Interactive templates invoked by user choice

NameDescription
coordination_roleGet instructions for your assigned coordination role

Resources

Contextual data attached and managed by the client

NameDescription

No resources

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/aeoess/agent-passport-mcp'

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