streamable-httpMITupdated 20d ago
Where agents discover OP-verified merchants on the rails Bitcoin and Tether actually use.
What can you do with Agentic Terminal Directory?
AT Directory
Where agents discover OP-verified merchants on the rails Bitcoin and Tether actually use.
AT Directory indexes merchants that sell products, services, APIs, or content and accept Lightning, BOLT12, L402, or USDT (any chain), with trust attestations issued through Observer Protocol. It is the verified, agent-callable layer on top of the fragmented agent-payment landscape. It is not in the payment path โ agents discover here and pay merchants directly.
- MCP server (primary product) โ
@agenticterminal/mcp-server, hosted atmcp.agenticterminal.ai. - Web directory โ agenticterminal.ai, same data rendered for humans.
- SKILL.md โ teaches an agent how to query and complete payment handoff.
Status
Pre-v1, active build. Target: week of 2026-05-18 for a live Tether-meeting demo. v1 ships Tiers 1โ2.
Use it from an agent
// Hosted (recommended, no install)
{ "mcpServers": { "at-directory": { "url": "https://mcp.agenticterminal.ai/mcp" } } }
npm install -g @agenticterminal/mcp-server # local alternative
Six tools: search_merchants, get_merchant, verify_payment_endpoint, list_categories, list_rails, whoami. Reads are ungated โ anonymous agents see all tiers and can transact with no setup. An Observer Protocol DirectoryAccessCredential raises rate limits and unlocks write access (reviews), but is not required to discover or transact. Full reference: agenticterminal.ai/api-docs.
Repo layout
data/merchants/ One JSON file per merchant (the source of truth).
data/schema/ JSON Schema (Draft 2020-12) for merchant records.
data/categories.json Category taxonomy.
data/rails.json Supported rails + USDT chains.
data/LOGO-AUDIT.md Logo sourcing checklist.
packages/core/ Types, schema-validated load, search/filter.
packages/mcp-server/ stdio + hosted HTTP MCP server, rail verification.
packages/skill/ SKILL.md (canonical).
apps/web/ Next.js static directory + Netlify Functions.
deploy/mcp-server/ Dockerfile, systemd unit, DEPLOY runbook.
scripts/ Data validation (and one-time crawl tooling).
Development
pnpm install
pnpm -r test # core + mcp-server unit/integration tests
pnpm -r typecheck
pnpm validate-data # schema-validate every merchant record
pnpm -F @at-directory/web dev # web at localhost:3000
pnpm -F @agenticterminal/mcp-server start:stdio # MCP over stdio
Local MCP with the mock verifier (until the real AT route lands):
pnpm -F @agenticterminal/mcp-server exec tsx src/dev/mock-verifier.ts &
AT_VERIFIER_URL=http://127.0.0.1:8787 \
pnpm -F @agenticterminal/mcp-server start:stdio
Data model
Every merchant carries two orthogonal signals โ read both:
- OP trust tier (the merchant): 1 self-attested ยท 2 operator-verified. v1 Tier 2 = AT operator transacted and confirmed; the bilateral counterparty-attestation model lands in v1.x.
- Agent-callable tier (the integration):
full-apiยทstructured-handoffยทhuman-checkout.
The trust tier gates nothing. Reads are ungated, every tier is visible to anonymous agents, and an agent can transact with a Tier 1 merchant with no setup. The tier is evidence for a caller to weigh, not a decision this directory has made on its behalf. Nothing is refused on the basis of it.
Schema is enforced in CI (pnpm validate-data) and on every load. USDT rails require a chain; Tier 2+ non-integrated records require an op_attestation_url; an op_trust_tier of 3 is rejected on ingest, which is why the model above stops at 2.
Contributing
See CONTRIBUTING.md. Merchants can self-register at agenticterminal.ai/submit โ submissions open a PR for review and land at Tier 1 until verified.
Documents
License
MIT.
Install
Add Agentic Terminal Directory to your client. Pick the one you use.
claude mcp add --transport http agentic-terminal-directory https://mcp.agenticterminal.ai/mcpcodex mcp add agentic-terminal-directory --url https://mcp.agenticterminal.ai/mcp{
"mcpServers": {
"agentic-terminal-directory": {
"url": "https://mcp.agenticterminal.ai/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"agentic-terminal-directory": {
"type": "http",
"url": "https://mcp.agenticterminal.ai/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"agentic-terminal-directory": {
"url": "https://mcp.agenticterminal.ai/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"agentic-terminal-directory": {
"serverUrl": "https://mcp.agenticterminal.ai/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance19/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 13 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | May 19, 2026 |