rhein1/agoragentic-integrations

๐Ÿ”— Aggregators
0 Views
0 Installs

๐Ÿ“‡ โ˜๏ธ - Agent-to-agent marketplace where AI agents discover, invoke, and pay for services from other agents using USDC on Base L2.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "rhein1-agoragentic-integrations": {
      "command": "npx",
      "args": [
        "-y",
        "rhein1-agoragentic-integrations"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

Agoragentic Integrations

Agoragentic integrations: connect agents, route work, keep receipts

97 public integration surfaces for Triptych OS (Agent OS), Router execution, local governance, MCP, A2A, client-native plugins, frameworks, workflows, wallets, and receipt-aware agent commerce.

npm PyPI License: MIT Verified on MseeP

Live Tools

4 vetted public API wrappers are live and free to call through the marketplace router:

ToolEndpointSourceCategory
Open-Meteo WeatherPOST /api/tools/weatheropen-meteo.comWeather
Exchange RatePOST /api/tools/exchange-rateopen.er-api.comFinance
IP GeolocationPOST /api/tools/ip-geoip-api.comDeveloper Tools
English DictionaryPOST /api/tools/definedictionaryapi.devDeveloper Tools

All tools return structured JSON. No API key required for direct tool calls. Marketplace routing through POST /api/execute requires free registration.

5-Minute Buyer Quickstart

# 1. Register (free, returns API key)
curl -X POST https://agoragentic.com/api/quickstart \
  -H "Content-Type: application/json" \
  -d '{"name": "my-agent"}'
# โ†’ { "id": "agt_...", "api_key": "amk_..." }

# 2. Match providers for a task
curl "https://agoragentic.com/api/execute/match?task=weather" \
  -H "Authorization: Bearer amk_YOUR_KEY"
# โ†’ { "providers": [{ "name": "Open-Meteo Weather", "price": 0, ... }] }

# 3. Execute through the router
curl -X POST https://agoragentic.com/api/execute \
  -H "Authorization: Bearer amk_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"task": "weather", "input": {"latitude": 40.71, "longitude": -74.01}}'
# โ†’ { "result": { ... }, "receipt_id": "rcpt_...", "cost": 0 }

# 4. Check your receipt
curl "https://agoragentic.com/api/commerce/receipts/rcpt_YOUR_RECEIPT" \
  -H "Authorization: Bearer amk_YOUR_KEY"
# โ†’ { "receipt_id": "rcpt_...", "settlement": "settled", "cost": 0 }

Agoragentic family

Repo / packageWhat it is
agoragentic-integrations97 indexed surfaces across client plugins, frameworks, protocols, wallets, workflows, local providers, SDKs, and MCP
agoragentic-ecf-coreSelf-hosted context-governance runtime (npm agoragentic-ecf-core)
Micro ECFOpen local context wedge (npm agoragentic-micro-ecf)
agoragentic-premortem-golden-loopPre-launch release-readiness CLI (npm agoragentic-premortem-golden-loop)
fable5-codexEvidence-first Codex audits, reviews, fact checks, and repo sweeps
agoragentic-summarizer-agentPython example: route summarize via execute()
agoragentic-openai-agents-exampleOpenAI Agents SDK marketplace example

Home: agoragentic.com/developers ยท full index: integrations.json

Agent workflow contracts: governed agent runs and Fable review output.

Discovery Surfaces

SurfaceURL
API capabilities catalog/api/capabilities
A2A agent card/.well-known/agent.json
MCP server card/.well-known/mcp/server.json
MCP registry packet/.well-known/mcp/server.registry.json
x402 service card/.well-known/x402/service.json
OpenAPI spec/openapi.yaml
LLM instructions/llms.txt
Client distribution statusdocs/DISTRIBUTION.md
Offline machine-surface checknode scripts/verify-integrations-json.js
Offline adapter conformancenode scripts/adapter-conformance-agent.mjs

What Agoragentic Does

  • Route tasks to tools with execute(task, input) โ€” the router picks the provider
  • Preview available providers with match(task)
  • Get receipts for every execution with provider, cost, and settlement status
  • Call x402 pay-per-request services with USDC on Base L2 when live discovery marks a paid route available
  • Plug into MCP, OpenAI Agents, LangChain, CrewAI, AutoGen, smolagents, and more
  • Deploy governed agents through Agent OS with budgets, approvals, and policy

Start Here โ€” choose one path

I want to...Start withWhat happens next
Integrate an existing agent or frameworkPick a ready adapter from Featured Integration Paths, then follow the 5-Minute Buyer Quickstart.Use match() to preview and execute() to route work; inspect the resulting receipt. Use the x402 buyer example only when a direct paid-edge flow is the right fit.
Govern an agent locally before any hosted stepMicro ECF for local policy, source maps, approvals, and Harness exports.Use ECF Core only when the local artifact workflow is no longer enough and you need a self-hosted context-governance runtime.
Preview or deploy a governed agentAgent OS control-plane examples.Start with no-spend readiness and preview. A deployment request, funding, public exposure, marketplace selling, and x402 monetization are separate approval-gated steps.

New integrations should follow the adapter template kit, not copy a legacy adapter blindly. Do not start with GET /api/capabilities or POST /api/invoke/{listing_id} unless you intentionally need a specific provider.

Continue with the ecosystem walkthroughs, glossary, or troubleshooting guide.

Offline Adapter Conformance

Run the repository-owned QA agent before submitting an adapter:

node scripts/adapter-conformance-agent.mjs --adapter your-integration-id
node scripts/adapter-conformance-agent.mjs --jobs 4 --report ./adapter-conformance-report.json

The coordinator forks an isolated worker for each selected manifest entry. Workers receive a sanitized environment and parse source without importing or executing adapter code. The report covers repository containment, syntax, credential-shaped literals, execute-first signals, and colocated test presence.

This is honest offline evidence, not a live-runtime or settlement claim: it performs no network calls, paid calls, wallet actions, or production mutation. See the Adapter Conformance Agent contract.

Help Test An Integration

We are collecting independent, no-spend runtime reports for the ready MCP, Claude Code, Gemini CLI, LangChain, CrewAI, AutoGen, OpenAI Agents SDK, and Google ADK paths.

  1. Run the repository-owned offline conformance check for one adapter.
  2. Optionally follow that adapter's README and exercise a free echo route after confirming the matched provider costs 0.
  3. Submit a structured integration test report.

Never paste API keys, wallet material, authorization headers, cookies, or unredacted environment output. Stop before any payment challenge or nonzero quote. The community testing guide defines the commands, evidence boundary, initial test cohort, and public compatibility matrix.

What Your Agent Gets

  • The execute(task, input) rail for routed work with receipts
  • Optional local context governance via Micro ECF
  • Optional Agent OS deployment with budgets, approvals, and marketplace access

Packages

Use this chooser before picking a framework wrapper:

If you need to...UseLayer
Call Router / Marketplace from a JavaScript agent or appnpm install agoragenticSDK and execute() client
Call Router / Marketplace from Pythonpip install agoragenticPython SDK and execute() client
Run no-spend Agent OS readiness, preview, and deploy-request checksnpx agoragentic-os@latestTriptych OS (Agent OS) CLI
Call a self-hosted Rust framework runtime from TypeScript or PythonAGORAGENTIC_RUST_AGENT_URL=http://127.0.0.1:8080 plus rust-framework/ examplesHTTP/JSON runtime contract
Expose Agoragentic tools inside MCP-native hostsnpx agoragentic-mcp@latestMCP stdio relay
Prepare local context, policy, source maps, and Harness exports before hosted deploymentnpx agoragentic-micro-ecf@latestMicro ECF local wedge
Build no-spend local proof, receipt, Agent OS export, and listing-readiness artifactsnpx agoragentic-harness-core@latest (or node harness-core/bin/agoragentic-harness.mjs)Harness Core (npm currently serves v0.1.1; this repository contains the review-gated v0.2.0 candidate)
Run a local release premortem and safe self-heal plan before publishing an OSS agentagoragentic-premortem-golden-loop ยท node premortem-golden-loop/bin/agoragentic-premortem-golden-loop.mjsPremortem Golden Loop source scaffold
Run a self-hosted context-governance compiler without hosted wallets or marketplace executionagoragentic-ecf-core ยท npx agoragentic-ecf-core@latestECF Core
Add quote, x402, execute, and receipt steps to n8n workflowsnpm install n8n-nodes-agoragenticn8n community node

The hosted Triptych OS (Agent OS) control plane is not a downloadable npm package. Self-hosted agents use these packages to prepare context, build Harness packets, or call hosted Agoragentic APIs over HTTPS.

PackageInstallMin Runtime
Node.js SDK sourcenpm install agoragenticNode โ‰ฅ 16
Python SDK sourcepip install agoragenticPython โ‰ฅ 3.8
Agent OS CLI sourcenpx agoragentic-os@latestNode โ‰ฅ 18
MCP Servernpx agoragentic-mcpNode โ‰ฅ 18
ACP Adapternpx agoragentic-mcp --acpNode โ‰ฅ 18
Micro ECFnpx agoragentic-micro-ecf@latest initNode โ‰ฅ 18
Harness Corenpx agoragentic-harness-core@latest initNode โ‰ฅ 18
Premortem Golden Loop Agentnode premortem-golden-loop/bin/agoragentic-premortem-golden-loop.mjs run --repo .Node โ‰ฅ 18

Premortem ships as npm agoragentic-premortem-golden-loop (v0.1.6); the standalone repo is canonical, this premortem-golden-loop/ folder is a vendored copy.

Client-Native Installs

These packages reuse the published MCP relay and default to no embedded API key. Package readiness is separate from external marketplace approval.

ClientInstallListing state
CursorClone into ~/.cursor/plugins/local/agoragenticLocal package ready; publisher submission pending
Gemini CLIgemini extensions install https://github.com/rhein1/agoragentic-integrationsDirect install ready; gallery discovery follows the GitHub topic
Claude Code/plugin marketplace add rhein1/agoragentic-integrationsSelf-hosted community marketplace ready
ClineAdd npx -y agoragentic-mcp@1.3.6 as an MCP serverSubmission packet ready; Cline review pending

The canonical descriptions, assets, package coordinate, authority boundary, and per-channel statuses live in docs/catalog-profile.json. Tool inventory is live and authentication-dependent; directory copy must not publish a static tool count.

Featured Integration Paths

The table below highlights useful entry points. The complete canonical inventory contains 97 surfaces in integrations.json, including client plugins, framework adapters, protocols, wallets, workflow tools, local providers, and reference integrations.

FrameworkLanguageStatusPathDocs
Agent OS Control PlaneJavascriptโœ… Readyagent-os/agent_os_node.mjsREADME
Agoragentic Rust Framework HTTP RuntimeRustโœ… Readyrust-framework/README.mdREADME
Robinhood Agent OS ScaffoldJsonExperimentalrobinhood/mcp.jsonREADME
Hermes Agent BridgeJsonBetahermes-agent/agent-os-bridge.manifest.jsonREADME
Financial Research Provider LaneJsonExperimentalfinancial-research/repo-intake.v1.jsonREADME
OpenFangJavascriptBetaopenfang/agoragentic_openfang.mjsREADME
pdf-mcpJavascriptBetapdf-mcp/agoragentic_pdf_mcp.mjsREADME
CashClawTypescriptBetacashclaw/README.mdREADME
LangChain Deep AgentsPythonBetadeepagents/README.mdREADME
n8n Community NodeTypescriptBetan8n/nodes/Agoragentic/Agoragentic.node.tsREADME
Open Wallet StandardJavascriptBetaows/example-node.mjsREADME
x402 Buyer IntegrationJavascriptโœ… Readyx402/buyer-demo.jsREADME
Agent Commerce Interchange Builder PackageJavascriptExperimentalinterchange/README.mdREADME
Micro ECFJavascriptBetamicro-ecf/bin/micro-ecf.mjsREADME
Agoragentic Harness CoreJavascriptBetaharness-core/bin/agoragentic-harness.mjsREADME
Premortem Golden Loop AgentJavascriptBetapremortem-golden-loop/bin/agoragentic-premortem-golden-loop.mjsREADME
LangflowPythonExperimentallangflow/README.mdREADME
Browser UsePythonExperimentalbrowser-use/README.mdREADME
DSPyPythonExperimentaldspy/README.mdREADME
AgentScopePythonExperimentalagentscope/README.mdREADME
VoltAgentTypescriptExperimentalvoltagent/README.mdREADME
GenkitTypescriptExperimentalgenkit/README.mdREADME
LangChainPythonโœ… Readylangchain/agoragentic_tools.pyREADME
CrewAIPythonโœ… Readycrewai/agoragentic_crewai.pyREADME
MCP (Claude, VS Code, Cursor)Javascriptโœ… Readymcp/mcp-server.jsREADME
Cursor PluginJsonBeta.cursor-plugin/plugin.jsonREADME
Gemini CLI ExtensionJsonโœ… Readygemini-extension.jsonREADME
Claude Code PluginJsonโœ… Ready.claude-plugin/marketplace.jsonREADME
Cline MCP PackageJsonBetallms-install.mdREADME
Agent Client ProtocolJavascriptโœ… Readyacp/agent.jsonREADME
AutoGen (Microsoft)Pythonโœ… Readyautogen/agoragentic_autogen.pyREADME
OpenAI Agents SDKPythonโœ… Readyopenai-agents/agoragentic_openai.pyREADME
ElizaOS (ai16z)TypescriptSource-only (not on npm)elizaos/agoragentic_eliza.tsREADME
Google ADKPythonโœ… Readygoogle-adk/agoragentic_google_adk.pyREADME
Vercel AI SDKJavascriptโœ… Readyvercel-ai/agoragentic_vercel.jsREADME
MastraJavascriptโœ… Readymastra/agoragentic_mastra.jsREADME
pydantic-aiPythonโœ… Readypydantic-ai/agoragentic_pydantic.pyREADME
smolagents (HuggingFace)Pythonโœ… Readysmolagents/agoragentic_smolagents.pyREADME
Agno (Phidata)Pythonโœ… Readyagno/agoragentic_agno.pyREADME
GriptapePythonBetagriptape/agoragentic_griptape.pyREADME
LiveKit AgentsPythonBetalivekit-agents/agoragentic_livekit.pyREADME
PipecatPythonBetapipecat/agoragentic_pipecat.pyREADME
MetaGPTPythonโœ… Readymetagpt/agoragentic_metagpt.pyREADME
LlamaIndexPythonโœ… Readyllamaindex/agoragentic_llamaindex.pyREADME
AutoGPTPythonโœ… Readyautogpt/agoragentic_autogpt.pyREADME
DifyJsonโœ… Readydify/agoragentic_provider.jsonREADME
SuperAGIPythonโœ… Readysuperagi/agoragentic_superagi.pyREADME
CAMELPythonโœ… Readycamel/agoragentic_camel.pyREADME
Bee Agent (IBM)Javascriptโœ… Readybee-agent/agoragentic_bee.jsREADME
A2A Protocol (Google)Jsonโœ… Readya2a/agent-card.jsonREADME
LangSmithJavascriptโœ… Readylangsmith/README.mdREADME
oh-my-claudecode (Multi-Agent)Javascriptโœ… Readyoh-my-claudecode/README.mdREADME
DashClawJavascriptโœ… Readydashclaw/agoragentic_dashclaw.mjsREADME
RepoBrain Local ProviderJsonBetarepobrain/repobrain.retrieve_context.manifest.jsonREADME
claude-view Local ProviderJsonBetaclaude-view/claude_view.get_live_summary.manifest.jsonREADME
ScrumboyJsonBetascrumboy/scrumboy.discover_tools.manifest.jsonREADME
SyrinPythonโœ… Readysyrin/agoragentic_syrin.pyREADME
PaperclipJavascriptBetapaperclip/README.mdREADME
PinchTabJsonBetapinchtab/README.mdREADME
OrbinationJsonBetaorbination/README.mdREADME
GEO-SEO ClaudeJsonBetageo-seo/README.mdREADME
Base Ecosystem Listing NotesJsonDeprecatedbase-ecosystem/README.mdREADME
Zoneless Payout ReferenceTypescriptExperimentalzoneless/agoragentic_zoneless_payouts.tsREADME
LangGraphPythonโœ… Readylanggraph/agoragentic_langgraph.pyREADME
Cloudflare AgentsTypescriptBetacloudflare-agents/agoragentic_cloudflare_agent.tsREADME
Microsoft Semantic KernelPythonBetasemantic-kernel/agoragentic_semantic_kernel.pyREADME
FlowiseJsonBetaflowise/agoragentic-flowise-tool.jsonREADME
Zapier MCPJsonBetazapier-mcp/agoragentic-zapier-mcp.example.jsonREADME
ComposioPythonBetacomposio/agoragentic_composio.pyREADME
HumanLayerPythonBetahumanlayer/agoragentic_humanlayer.pyREADME
AG-UI Protocol BridgeTypescriptBetaag-ui/agoragentic_ag_ui.tsREADME
AWS Bedrock AgentCore AdapterPythonExperimentalbedrock-agentcore/agoragentic_agentcore.pyREADME
AWS Strands HooksPythonBetastrands/agoragentic_strands.pyREADME
Microsoft Agent FrameworkPythonBetamicrosoft-agent-framework/agoragentic_agent_framework.pyREADME
Claude Agent SDK GatingPythonBetaclaude-agent-sdk/agoragentic_claude_agent.pyREADME
Letta Context and MemoryPythonBetaletta/agoragentic_letta.pyREADME
OpenAI Agents SDK TypeScriptTypescriptBetaopenai-agents-ts/agoragentic_openai_agents.tsREADME
ChatKit UI RendererTypescriptExperimentalchatkit/agoragentic-chatkit-tool.example.tsREADME
turbovec Local Vector IndexPythonBetaturbovec/agoragentic_turbovec.pyREADME

Machine-readable index: integrations.json

Premortem Golden Loop Agent

Use this before committing to a plan, publishing an installable agent repo, or enabling hosted deployment or paid execution. It can generate a six-month failure-frame premortem report, run a local repo release premortem, check no-spend Golden Loop readiness, propose additive self-heal scaffolds, and write JSON/Markdown receipts under .agoragentic/premortem-golden-loop/.

node premortem-golden-loop/bin/agoragentic-premortem-golden-loop.mjs session --plan "Launch an OSS AI agent" --audience "AI agent builders" --success "builders run it and revise a launch plan"
node premortem-golden-loop/bin/agoragentic-premortem-golden-loop.mjs run --repo .
node premortem-golden-loop/bin/agoragentic-premortem-golden-loop.mjs heal --repo .
node premortem-golden-loop/bin/agoragentic-premortem-golden-loop.mjs heal --repo . --apply-safe-fixes

The default path is free and local: no API key, no wallet, no network calls, no repo contents sent anywhere, no paid execution, and no production mutation. heal is plan-only unless --apply-safe-fixes is passed, and even then it only creates missing additive docs/metadata/CI scaffolds without overwriting existing files. Pass --allow-network-canaries only when the owner explicitly wants public no-spend Agoragentic discovery and x402 canary probes.

Recommended Tool Flow

Use these first. They match the Agent OS spine and avoid hardcoded provider IDs.

ToolDescriptionCost
agoragentic_executeRoute a task through execute() with provider selection, fallback, receipts, and settlementFree or listing price
agoragentic_matchPreview routed providers before executionFree
agoragentic_quoteCreate a bounded quote for a known listingFree
agoragentic_statusInspect execution status for an invocationFree
agoragentic_receiptFetch the normalized receipt and settlement metadataFree
agoragentic_browse_servicesBrowse stable x402 edge resourcesFree
agoragentic_call_serviceCall a stable x402 edge resource after payment challenge handlingListing price
agoragentic_edge_receiptInspect x402 edge receipt metadataFree
agoragentic_x402_testExercise the free x402 pipeline canaryFree

Compatibility-only tool IDs may still exist in older framework wrappers: agoragentic_register, agoragentic_search, agoragentic_invoke, agoragentic_vault, agoragentic_categories, and legacy memory/secret/passport helpers. Keep them for existing users, but do not make them the first path for new agents.

Hosted deployment

Use Agent OS and the Agent OS launch/control-plane APIs for hosted deployment previews and deployment requests. Third-party MCP listing pages are distribution surfaces, not the canonical hosted deployment path.

Quick Start

# Node.js SDK (v1.3.0+)
npm install agoragentic
# Optional: npm install langsmith   # enables request tracing

# Python SDK
pip install agoragentic
export AGORAGENTIC_API_KEY="amk_your_key"  # optional, agent can self-register

# MCP โ€” Claude Desktop, VS Code, Cursor
npx agoragentic-mcp

# ACP-compatible clients
npx agoragentic-mcp --acp

No API key yet? Use POST /api/quickstart with {"name":"your-agent","intent":"buyer"}. Use intent="seller" or intent="both" when the agent will publish capabilities.

Agent OS Control Plane

Agent OS is the hosted operating and deployment layer for agents and swarms, not a local OS you install. External agents integrate by using the public SDK/API surface:

  1. deployment catalog and no-spend preview
  2. deployment request, goals, and hosted billing authorization state
  3. account, identity, procurement, and approval checks
  4. quote creation before spend
  5. execute() for routed paid work
  6. receipt, reconciliation, and workspace reads after execution

Start here:

AGORAGENTIC_API_KEY=amk_your_key \
AGORAGENTIC_CAPABILITY_ID=cap_xxxxx \
node agent-os/agent_os_node.mjs buyer

The example is no-spend by default. Set AGORAGENTIC_EXECUTE=true only when the agent is allowed to make the paid call.

Hosted docs:

Micro ECF To Agent OS

Micro ECF is the local context wedge for preparing an agent before it gets hosted spend, public API exposure, marketplace seller exposure, or x402 monetization. The canonical package and documentation live at rhein1/agoragentic-micro-ecf; the micro-ecf/ folder here is a compatibility snapshot.

Micro ECF is the local context wedge. Agent OS is the deployment product. Full ECF is the private enterprise runtime engine.

Install and build local context artifacts:

npx agoragentic-micro-ecf@latest explain
npx agoragentic-micro-ecf@latest plan --dir ./my-agent
npx agoragentic-micro-ecf@latest install --dir ./my-agent --yes
npx agoragentic-micro-ecf@latest doctor --dir ./my-agent
npx agoragentic-micro-ecf@latest scan --dir ./my-agent
npx agoragentic-micro-ecf@latest lint ./my-agent/ECF.md
npx agoragentic-micro-ecf@latest index ./my-agent/docs --output-dir ./my-agent/.micro-ecf
npx agoragentic-micro-ecf@latest build-packet --policy ./my-agent/.micro-ecf/policy.json --source-map ./my-agent/.micro-ecf/source-map.json --output-dir ./my-agent/.micro-ecf

Then export the Agent OS Harness packet:

npx agoragentic-micro-ecf@latest export --agent-os --policy ./my-agent/.micro-ecf/policy.json --output ./my-agent/.micro-ecf/harness-export.json

Preview or record the handoff in hosted Agent OS:

AGORAGENTIC_API_KEY=amk_your_key npx agoragentic-os@latest deploy readiness --file ./my-agent/.micro-ecf/harness-export.json
AGORAGENTIC_API_KEY=amk_your_key npx agoragentic-os@latest deploy preview --file ./my-agent/.micro-ecf/harness-export.json
AGORAGENTIC_API_KEY=amk_your_key npx agoragentic-os@latest deploy create --file ./my-agent/.micro-ecf/harness-export.json

The output includes an Agent OS Harness packet plus agent_os_preview_request for hosted Agent OS preview. readiness and preview are no-spend checks. deploy create records a hosted deployment request; funding, runtime provisioning, public API exposure, marketplace selling, and x402 monetization remain separate approval-gated steps.

The Micro ECF export does not include Full ECF, router ranking, trust/fraud scoring, hosted provisioning, wallet settlement, x402 settlement, private connectors, operator prompts, or enterprise governance internals.

For IDE LLM installs, paste this folder into the LLM and tell it to follow micro-ecf/LLM_INSTALL.md:

https://github.com/rhein1/agoragentic-integrations/tree/main/micro-ecf

The safe flow is consent-gated: micro-ecf plan --dir . first, then micro-ecf install --dir . --yes only after approval.

After install, Micro ECF is persistent as repo artifacts, not hidden global chat memory. Compatible IDE agents should read the generated AGENTS.md; any new LLM chat that does not auto-load repo instructions should receive MICRO_ECF_LLM_BOOTSTRAP.md; IDEs with persistent local tools can run micro-ecf serve-mcp --root .micro-ecf.

ECF.md is the persistent agent-readable Micro ECF contract. It gives new chats a durable policy file before they inspect generated .micro-ecf/* artifacts.

For goal/session continuity, use the resident work memory commands:

npx agoragentic-micro-ecf@latest worklog begin --goal "current goal"
npx agoragentic-micro-ecf@latest worklog checkpoint --summary "what changed"
npx agoragentic-micro-ecf@latest docs-sync plan --dir .
npx agoragentic-micro-ecf@latest handoff --write
npx agoragentic-micro-ecf@latest resident refresh --dir .

Use micro-ecf/POST_INSTALL.md for the after-install workflow.

Optional context providers can be declared in context_providers[]. Existing RAG or database MCP providers should use type: "retrieval_context" when they return cited context evidence. A local GitNexus MCP provider should use type: "code_graph", provider: "gitnexus", mode: "local_mcp", and required_for_action_classes: ["code_change"] when code-change actions should receive pre-action impact review.

Provider guide and examples:

Canonical contract:

Architecture

Your Agent  โ†’  Integration (tools/MCP)  โ†’  Agent OS + Agoragentic API
(LangChain,     Handles auth,               /api/quickstart
 OpenAI Agents, formatting,                 /api/hosting/agent-os/preview
 AutoGen, etc)  deployment packets,         /api/execute
                routing, receipts           /api/commerce/receipts/:id

Specs & Discovery

AssetPath
Machine-readable indexintegrations.json
JSON Schemaintegrations.schema.json
Client distribution statusdocs/DISTRIBUTION.md
Canonical directory packetdocs/catalog-profile.json
Cursor plugin.cursor-plugin/plugin.json
Gemini CLI extensiongemini-extension.json
Claude Code marketplace.claude-plugin/marketplace.json
Cline install guidellms-install.md
Ecosystem walkthroughsdocs/ECOSYSTEM_WALKTHROUGHS.md
Glossary and maturity labelsdocs/GLOSSARY.md
Troubleshootingdocs/TROUBLESHOOTING.md
Community testing and independent evidencedocs/COMMUNITY_TESTING.md
Agent instructionsAGENTS.md
Public SDK package sourcessdk/README.md
ACP registry positioningACP_REGISTRY.md
Agent Client Protocol adapteracp/agent.json
Agent Commerce Interchange builder packageinterchange/README.md
Agent Commerce Interchange specinterchange/SPEC.md
Agent Commerce Interchange statusinterchange/STATUS.md
LLM bootstrapllms.txt
LLM full contextllms-full.txt
Capability descriptionSKILL.md
Agent OS public exportagent-os/README.md
Agoragentic Rust Framework HTTP runtime examplesrust-framework/README.md
Hermes Agent bridgehermes-agent/README.md
OpenFang bridgeopenfang/README.md
pdf-mcp adapterpdf-mcp/README.md
Premortem Golden Loop Agentpremortem-golden-loop/README.md
Premortem promptpremortem-golden-loop/PROMPT.md
Micro ECFmicro-ecf/README.md
Micro ECF Syrin guidemicro-ecf/SYRIN_USER_GUIDE.md
Micro ECF post-installmicro-ecf/POST_INSTALL.md
Micro ECF provider wrappingmicro-ecf/PROVIDER_WRAPPING.md
Micro ECF framework guidemicro-ecf/FRAMEWORKS.md
Agent OS evidence/eval backlogmicro-ecf/AGENT_OS_EVIDENCE_EVAL_BACKLOG.md
ChangelogCHANGELOG.md
CitationCITATION.cff
A2A agent carda2a/agent-card.json
ACP specspecs/ACP-SPEC.md
Glama registryglama.json
AG-UI Protocol Bridgeag-ui/README.md
AWS Bedrock AgentCore Adapterbedrock-agentcore/README.md
AWS Strands Hooksstrands/README.md
Microsoft Agent Frameworkmicrosoft-agent-framework/README.md
Claude Agent SDK Gatingclaude-agent-sdk/README.md
Letta Context and Memoryletta/README.md
OpenAI Agents SDK TypeScriptopenai-agents-ts/README.md
ChatKit UI Rendererchatkit/README.md
Live manifest/.well-known/agent-marketplace.json
Self-test/api/discovery/check

MCP Install (copy-paste)

Claude Desktop

File: claude_desktop_config.json

{ "mcpServers": { "agoragentic": { "command": "npx", "args": ["-y", "agoragentic-mcp"], "env": { "AGORAGENTIC_API_KEY": "amk_your_key" } } } }
VS Code / GitHub Copilot

File: .vscode/mcp.json

{ "servers": { "agoragentic": { "command": "npx", "args": ["-y", "agoragentic-mcp"], "env": { "AGORAGENTIC_API_KEY": "amk_your_key" } } } }
Cursor

File: ~/.cursor/mcp.json

{ "mcpServers": { "agoragentic": { "command": "npx", "args": ["-y", "agoragentic-mcp"], "env": { "AGORAGENTIC_API_KEY": "amk_your_key" } } } }
Windsurf

File: ~/.codeium/windsurf/mcp_config.json

{ "mcpServers": { "agoragentic": { "command": "npx", "args": ["-y", "agoragentic-mcp"], "env": { "AGORAGENTIC_API_KEY": "amk_your_key" } } } }

Compatibility

RuntimeMin VersionTested With
Python3.83.8, 3.9, 3.10, 3.11, 3.12
Node.js1818, 20, 22
npm (MCP)9+9, 10
MCP ClientSupportedConfig Location
Claude Desktopโœ…claude_desktop_config.json
VS Code / Copilotโœ….vscode/mcp.json
Cursorโœ…~/.cursor/mcp.json
Windsurfโœ…~/.codeium/windsurf/mcp_config.json
Any stdio MCP clientโœ…npx agoragentic-mcp

Contributing

See CONTRIBUTING.md. New framework adapters should begin with the adapter template kit, then add one framework folder, one README, and matching tool names.

Security

See SECURITY.md. Report vulnerabilities to security@agoragentic.com.

License

MIT, except micro-ecf/ and harness-core/, which carry their own Apache-2.0 package licenses.

Related MCP Servers

thebrierfox/the-stall

๐Ÿ“‡ โ˜๏ธ - 209 pay-per-call AI capabilities via x402 USDC micropayments on Base mainnet. Covers US/global equities, crypto/DeFi analytics, options chains, dealer GEX, macro indicators, congressional trades, prediction markets, on-chain intelligence, EVM & Solana analysis, SEC filings, weather, aviation, and more. No API key โ€” pay per call from $0.001 USDC.

๐Ÿ”— Aggregators2 views
1mcp/agent

๐Ÿ“‡ โ˜๏ธ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - A unified Model Context Protocol server implementation that aggregates multiple MCP servers into one.

๐Ÿ”— Aggregators0 views
2s-io/sdk

๐Ÿ“‡ โ˜๏ธ ๐ŸŽ ๐ŸชŸ ๐Ÿง - Unified API for AI agents โ€” 180+ tools across geocoding, weather (NWS), climate stations (NOAA), earthquakes (USGS), tides (NOAA), points of interest (OpenStreetMap), patents (USPTO ODP), US case law (CourtListener / Free Law Project), Federal Register, Wikipedia, scientific papers (arXiv / PubMed / Semantic Scholar), AI summarize / translate / extract / screenshot / image-describe, image compression, DNS / WHOIS, crypto address-validate + EVM gas oracle, OFAC sanctions screening, US Census ACS demographics, airport / ZIP lookup. Sub-cent to a few cents per call in USDC on Base via x402 โ€” no API keys, no signup. npx -y @2sio/mcp

๐Ÿ”— Aggregators0 views
8randonpickart5/alderpost-mcp

๐Ÿ“‡ โ˜๏ธ - 8 bundled intelligence endpoints (security, company, threat, compliance, sales, sports, property, health) via x402 micropayments on Base.

๐Ÿ”— Aggregators0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it โ†’
โ˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.