Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. 🧠 Knowledge & Memory
  3. Neonia: The Cloud Backend for AI Agents
N
Health: ActiveRecent health check succeeded.Last checked 9/9/2026, 1:00:19 AM

Neonia: The Cloud Backend for AI Agents

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository5 GitHub StarsTotal stargazers on GitHub for the source repository (5 stars).Visit Website

A managed MCP backend giving LLMs zero-trust Wasm compute, Graph Memory & neonia:// data pointers.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

One-click editor setup isn’t available for this listing yet β€” we don’t have a confirmed install command, and we’d rather show nothing than point your editor at the wrong package or host. Follow the project’s own setup instructions, linked above.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ
No confirmed setup config for this listing yet. We only publish a config block when the install details come from the project itself β€” its README, its docs, or a verified owner. We haven’t found those for Neonia: The Cloud Backend for AI Agents, and we’d rather show nothing than a guess you’d paste into your client. Follow the project’s own setup instructions for the current steps.
Install Directory Badge Claim listing Alternatives🧠 More in Knowledge & Memory

Documentation Overview

Neonia Agent MCP Examples

AI-Ready via Neonia

A collection of autonomous agent examples demonstrating how to integrate the Neonia Model Context Protocol (MCP) Gateway using the official Streamable HTTP transport standard.

About These Examples

This repository will continuously grow with new patterns demonstrating deterministic, high-performance AI agents.

Our first major showcases focus on solving two critical problems in modern agent architectures: Context Window Bloat and Tool Rigidity.

1. Solving Tool Rigidity (Auto-Pilot Discovery)

Agents are traditionally hard-coded with a static list of tools. If a user asks for something outside that list, the agent hallucinates or fails. The auto-discovery-url-to-markdown examples demonstrate how to give your agents true autonomy. By connecting to the Neonia Gateway, the agent can dynamically search for missing capabilities, read the tool's schema, and execute it on the fly without human intervention.

2. Solving Context Bloat (Zero-Bloat Data Processing)

Traditionally, when an agent needs to extract data from a large 5MB JSON file, it loads the entire file into its context window, causing massive token consumption, high latency, and LLM "amnesia". By connecting to the Neonia MCP Gateway (mcp.neonia.io/mcp?tools=neonia_data_jq_filter), our zero-bloat-jq-filter agents explicitly bind the Wasm-powered JQ Filter tool. The agent executes queries on the remote server and receives only the filtered result (e.g. $651,758.23), saving ~50,000+ tokens per request and responding almost instantly.

3. Stateful Memory Note (stateful-cloud-memory)

Agents typically suffer from absolute amnesia between sessions. If a user states a preference or business rule, it is lost unless hardcoded into the system prompt. The stateful-cloud-memory examples demonstrate how to create stateful agents that use Neonia's Dual Memory Architecture (neonia_sys_memory_note for writing and neonia_sys_memory_search for reading) to dynamically store and recall rules (like custom personas or user preferences) across completely isolated sessions without needing a custom database.

4. Persistent Knowledge Memory (persistent-knowledge-memory)

When agents learn hard architectural lessons, bug fixes, or strict operational rules, they need a way to persist this knowledge using a strict Cause-and-Effect structure (ADR). The persistent-knowledge-memory examples demonstrate using the neonia_sys_memory_lesson tool to save complex insights so future agents can fetch them using neonia_sys_memory_search before starting their tasks.

(More examples covering vision extraction, dynamic execution, and multi-agent orchestration will be added soon!)

Examples Provided

This repository includes implementations of "Zero-Bloat Data Processing", "Auto-Pilot Tool Discovery", and "Stateful Memory Note" across major agentic frameworks in 3 different languages:

1. Python (LangGraph)

A deterministic workflow using LangChain and LangGraph to build a reactive agent (create_agent) that dynamically wraps MCP capabilities into native LangChain @tool instances.

  • Directories: python/langgraph/zero-bloat-jq-filter, python/langgraph/chained-json-jq-filter, python/langgraph/auto-discovery-url-to-markdown, python/langgraph/stateful-cloud-memory, python/langgraph/persistent-knowledge-memory
  • Setup: uv sync && uv run python agent.py

2. Python (SmolAgents)

A self-assembling agent using Hugging Face's SmolAgents and LiteLLM. Demonstrates subclassing smolagents.Tool for synchronous forward execution wrapped around an asynchronous Streamable HTTP session.

  • Directories: python/smolagents/zero-bloat-jq-filter, python/smolagents/chained-json-jq-filter, python/smolagents/auto-discovery-url-to-markdown, python/smolagents/stateful-cloud-memory, python/smolagents/persistent-knowledge-memory
  • Setup: uv sync && uv run python main.py

3. TypeScript (Vercel AI SDK)

An integration with the Vercel AI SDK utilizing the official @modelcontextprotocol/sdk and @openrouter/ai-sdk-provider. Demonstrates proper multi-turn tool calling and schema mapping for Claude 3.7 Sonnet.

  • Directories: typescript/vercel-ai-sdk/zero-bloat-jq-filter, typescript/vercel-ai-sdk/chained-json-jq-filter, typescript/vercel-ai-sdk/auto-discovery-url-to-markdown, typescript/vercel-ai-sdk/stateful-cloud-memory, typescript/vercel-ai-sdk/persistent-knowledge-memory
  • Setup: npm install && npm start

4. Rust (Rig)

A statically-typed integration using the Rig agent framework and rust-mcp-sdk. Demonstrates bridging an initialized MCP client session into Rust's strong type system.

  • Directories: rust/rig/zero-bloat-jq-filter, rust/rig/chained-json-jq-filter, rust/rig/auto-discovery-url-to-markdown, rust/rig/stateful-cloud-memory, rust/rig/persistent-knowledge-memory
  • Setup: cargo run

Prerequisites

To run these examples, you will need:

  1. A Neonia API Key (NEONIA_API_KEY)
  2. An OpenRouter API Key (OPENROUTER_API_KEY)

Configure these in the .env file within the specific example directory you wish to run.

Ecosystem Architecture

text
agent-mcp-examples/
β”œβ”€β”€ typescript/                 # TypeScript Ecosystem
β”‚   └── vercel-ai-sdk/          # Vercel AI SDK Framework
β”‚       β”œβ”€β”€ zero-bloat-jq-filter/           # Single-tool Data Processing
β”‚       β”œβ”€β”€ chained-json-jq-filter/         # Multi-tool Chained Data Processing
β”‚       β”œβ”€β”€ auto-discovery-url-to-markdown/ # Auto-Pilot Tool Discovery
β”‚       β”œβ”€β”€ stateful-cloud-memory/          # System Memory Note Persistence
β”‚       └── persistent-knowledge-memory/    # Architectural Lesson Persistence
β”‚
β”œβ”€β”€ python/                     # Python Ecosystem
β”‚   β”œβ”€β”€ langgraph/              # LangGraph Framework
β”‚   β”‚   β”œβ”€β”€ zero-bloat-jq-filter/
β”‚   β”‚   β”œβ”€β”€ chained-json-jq-filter/
β”‚   β”‚   β”œβ”€β”€ auto-discovery-url-to-markdown/
β”‚   β”‚   β”œβ”€β”€ stateful-cloud-memory/
β”‚   β”‚   └── persistent-knowledge-memory/
β”‚   └── smolagents/             # SmolAgents Framework
β”‚       β”œβ”€β”€ zero-bloat-jq-filter/
β”‚       β”œβ”€β”€ chained-json-jq-filter/
β”‚       β”œβ”€β”€ auto-discovery-url-to-markdown/
β”‚       β”œβ”€β”€ stateful-cloud-memory/
β”‚       └── persistent-knowledge-memory/
β”‚
└── rust/                       # Rust Ecosystem
    └── rig/                    # Rig Framework
        β”œβ”€β”€ zero-bloat-jq-filter/
        β”œβ”€β”€ chained-json-jq-filter/
        β”œβ”€β”€ auto-discovery-url-to-markdown/
        β”œβ”€β”€ stateful-cloud-memory/
        └── persistent-knowledge-memory/

Available Examples

Each example is self-contained and demonstrates specific, production-ready architectural patterns over MCP.

1. Auto-Pilot Tool Discovery (auto-discovery-url-to-markdown)

Demonstrates how to give agents true autonomy. If an agent lacks a required capability, it dynamically searches the Neonia Gateway for a matching tool, reads its parameters, and executes it on the fly without human intervention.

  • πŸ“‚ auto-discovery-url-to-markdown (TypeScript / Vercel AI SDK)
  • πŸ“‚ auto-discovery-url-to-markdown (Python / LangGraph)
  • πŸ“‚ auto-discovery-url-to-markdown (Python / SmolAgents)
  • πŸ“‚ auto-discovery-url-to-markdown (Rust / Rig)

2. Zero-Bloat Data Processing (zero-bloat-jq-filter)

Demonstrates how to safely process massive API payloads using a deterministic Wasm JQ filter at the edge, drastically reducing LLM token context usage and preventing hallucination.

  • πŸ“‚ zero-bloat-jq-filter (TypeScript / Vercel AI SDK)
  • πŸ“‚ zero-bloat-jq-filter (Python / LangGraph)
  • πŸ“‚ zero-bloat-jq-filter (Python / SmolAgents)
  • πŸ“‚ zero-bloat-jq-filter (Rust / Rig)

3. Chained Data Execution (chained-json-jq-filter)

Demonstrates how to safely process massive API payloads using a chained data workflow. The agent uses neonia_web_json_fetch to retrieve remote JSON and stores it on the Gateway, returning a lightweight pointer. It then passes this pointer to a deterministic Wasm JQ filter (neonia_data_jq_filter) to extract exactly what it needs, keeping its context window incredibly small.

  • πŸ“‚ chained-json-jq-filter (TypeScript / Vercel AI SDK)
  • πŸ“‚ chained-json-jq-filter (Python / LangGraph)
  • πŸ“‚ chained-json-jq-filter (Python / SmolAgents)
  • πŸ“‚ chained-json-jq-filter (Rust / Rig)

4. Stateful Memory Note (stateful-cloud-memory)

Demonstrates how to use the Dual Memory Architecture (neonia_sys_memory_note and neonia_sys_memory_search) to allow an agent to remember personas or business rules across completely isolated sessions.

  • πŸ“‚ stateful-cloud-memory (TypeScript / Vercel AI SDK)
  • πŸ“‚ stateful-cloud-memory (Python / LangGraph)
  • πŸ“‚ stateful-cloud-memory (Python / SmolAgents)
  • πŸ“‚ stateful-cloud-memory (Rust / Rig)

5. Persistent Knowledge Memory (persistent-knowledge-memory)

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Knowledge & Memory View all alternatives
  • Moxie Docs MCP logoMoxie Docs MCP
    β˜… Featured

    MCP & Agent Skills for Automated Documentation, and codebase conventions + context

    🧠 Knowledge & Memory21 views
    Compare vs Moxie Docs MCP β†’
  • Scrivener MCP logoScrivener MCP

    Connect Scrivener 3 writing projects to Claude and other AI assistants. 47 tools for document management, writing analysis, semantic search, character/plot memory, and content enhancement. Progressive skill loading, relationship engine with HMS triplets, and JS fallback for offline semantic search. npm i -g scrivener-mcp

    🧠 Knowledge & Memory16 views
    Compare vs Scrivener MCP β†’
  • Context7 logoContext7

    Up-to-date code documentation for LLMs and AI code editors.

    🧠 Knowledge & Memory7 views
    Compare vs Context7 β†’
  • Codebase Memory MCP logoCodebase Memory MCP

    Code-intelligence engine that indexes a repo into a persistent knowledge graph β€” functions, classes, call chains, HTTP routes, cross-service links. 159 languages via tree-sitter + Hybrid LSP, sub-ms structural queries, 99% fewer tokens than grep. Single static binary, zero dependencies, 100% local. npx codebase-memory-mcp

    🧠 Knowledge & Memory7 views
    Compare vs Codebase Memory MCP β†’

Adoption & maintenance

Factual signals from GitHub, npm, and our automated checks β€” not a rating.

GitHub stars
5
Stargazers on the source repository.
Last commit
3mo ago
Most recent push to the default branch.

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Neonia: The Cloud Backend for AI Agents

We don't have a confirmed install command for Neonia: The Cloud Backend for AI Agents yet, so we don't publish a generated one β€” a guessed package name would point at the wrong package or none at all. Follow the project's own README or setup instructions (https://github.com/Neonia-io/agent-mcp-examples) for the current steps.

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewNeonia: The Cloud Backend for AI Agents AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/neonia-the-cloud-backend-for-ai-agents?style=directory)](https://allmcps.com/mcp/neonia-the-cloud-backend-for-ai-agents)
HTML Embed
<a href="https://allmcps.com/mcp/neonia-the-cloud-backend-for-ai-agents"><img src="https://allmcps.com/api/badge/neonia-the-cloud-backend-for-ai-agents?style=directory" alt="Neonia: The Cloud Backend for AI Agents on AllMCPs" /></a>

Technical Specs & Signals

Category🧠Knowledge & Memory
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Last updatedJun 4, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars5
GitHub Star CountTotal stargazers on GitHub representing community popularity (5 stars).
Last commit3mo ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Jun 4, 2026
31Quality signal: Emerging Β· 31/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools11/30
Adoption & activity2/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against 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 unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

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

Explore more

More in 🧠 Knowledge & Memory β†’Best MCP servers for Memory & Knowledge β†’Alternatives to Neonia: The Cloud Backend for AI Agents β†’Install in Claude DesktopInstall in CursorInstall in VS Code