1. Conduid
  2. Communication
  3. Neko
MCP server · Communication

Neko

Lightweight AI agent runtime targeting Raspberry Pi Zero 2W and low-end VPS. File-based memory, MCP tool support, Telegram integration — all in a single binary.

Unclaimed MIT last commit 6 months ago openclawaiai-agentscomms
64Good

Scored 7 days ago · breakdown

About Neko

Neko is an MCP server published by superhq-ai in the Communication category: lightweight AI agent runtime targeting Raspberry Pi Zero 2W and low-end VPS. File-based memory, MCP tool support, Telegram integration — all in a single binary. It has been installed 0 times through Conduid.

The repository has 13 stars and 1 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx neko

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Neko

Powered by Claude · Grounded in docs

I know everything about Neko. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.2.1v0.2.1 · 27 Feb 2026Full Changelog**: https://github.com/superhq-ai/neko/compare/v0.2.0...v0.2.1 Full Changelog**: https://github.com/superhq-ai/neko/compare/v0.2.0...v0.2.1
v0.2.0v0.2.0 · 15 Feb 2026Full Changelog**: https://github.com/superhq-ai/neko/compare/v0.1.0...v0.2.0 Full Changelog**: https://github.com/superhq-ai/neko/compare/v0.1.0...v0.2.0
v0.1.0v0.1.0 · 15 Feb 2026Full Changelog**: https://github.com/superhq-ai/neko/commits/v0.1.0 Full Changelog**: https://github.com/superhq-ai/neko/commits/v0.1.0

README

neko

Lightweight AI agent runtime targeting Raspberry Pi Zero 2W and low-end VPS. File-based memory, MCP tool support, Telegram integration — all in a single binary.

Install

Shell (Linux / macOS):

curl -fsSL https://raw.githubusercontent.com/superhq-ai/neko/main/install.sh | sh

Installs to ~/.local/bin by default. Override with NEKO_INSTALL_DIR:

NEKO_INSTALL_DIR=/usr/local/bin curl -fsSL https://raw.githubusercontent.com/superhq-ai/neko/main/install.sh | sh

From source:

git clone https://github.com/superhq-ai/neko.git
cd neko
cargo build --release
# binary at target/release/neko

Quick start

# Create default config and workspace
neko init

# Or run interactive setup
neko init --interactive

# Edit config (defaults to ~/.neko/config.toml)
neko config edit

# Start the agent gateway
neko start

# Send a test message
neko message "Hello, what can you do?"

Configuration

Config lives at ~/.neko/config.toml. Key sections:

[gateway]
bind = "127.0.0.1:3000"
workspace = "~/.neko/workspace"

[agent]
model = "gpt-5-mini"
provider = "openai"
max_tokens = 4096
tools = ["read_file", "write_file", "list_files", "exec", "http_request", "memory_write"]

[providers.openai]
api_key = "${OPENAI_API_KEY}"
base_url = "https://api.openai.com"

[tools]
sandbox = false
exec_timeout_secs = 1800

# MCP servers
[mcp.filesystem]
command = "npx"
args = ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"]

Environment variables are substituted via ${VAR_NAME} syntax.

CLI

neko init              Initialize config and workspace
neko init -i           Interactive setup
neko start             Start the gateway server
neko stop              Stop the running gateway
neko status            Show gateway status
neko logs [-l N]       Show recent logs
neko message <text>    Send a message to the agent
neko config show       Print current config
neko config edit       Open config in $EDITOR
neko sessions list     List active sessions
neko sessions clear    Clear all sessions
neko memory list       List memory files
neko memory search Q   Search memory files
neko skills list       List installed skills
neko skills install P  Install a skill from path
neko skills remove N   Remove a skill by name
neko cron list         List all cron jobs
neko cron add <prompt> Add a scheduled job
neko cron edit <id>    Edit a cron job
neko cron remove <id>  Remove a cron job
neko cron history      Show execution history

Features

OpenResponses-compatible LLM

Works with any provider exposing POST /v1/responses — OpenAI, Anthropic (via proxy), Ollama, or self-hosted models.

File-based memory

No database. No embeddings. No vector store. Memory is just markdown files — readable, editable, and version-controllable by both humans and the agent.

The system uses a two-tier architecture:

  • memory/MEMORY.md (core memory) — long-term facts and user preferences, always injected into the system prompt. Capped at 2000 chars with automatic warnings when the agent needs to compact it, forcing the agent to self-curate rather than accumulate stale context.
  • memory/YYYY-MM-DD.md (daily logs) — ephemeral session notes. Today's and yesterday's logs are loaded automatically, giving the agent a rolling two-day window of recent context without unbounded growth.
  • memory/recall/*.md (recall) — past conversations, auto-logged. Searchable via memory_search with regex support for when the agent needs to reach further back.

The agent manages its own memory through three tools:

  • memory_write — write or append to any memory file
  • memory_replace — surgical find-and-replace for updating facts (empty replacement = delete)
  • memory_search — case-insensitive search across all memory files with regex support

This means the agent actively maintains its own knowledge base — correcting outdated facts, promoting ephemeral notes to long-term memory, and compacting when context gets bloated. All of it happens in plain text files you can cat, grep, or commit to git.

MCP tool support

Connect external tools via Model Context Protocol stdio transport. Tools are discovered automatically and registered in the agent's tool registry.

Skills

Install AgentSkills.io-compatible skills as SKILL.md files with YAML frontmatter. Skills use progressive disclosure — metadata is always in context, full body is loaded on activation.

Telegram

Enable the Telegram channel to interact with the agent via a Telegram bot:

[channels.telegram]
enabled = true
bot_token = "${TELEGRAM_BOT_TOKEN}"
allowed_users = [123456789]

Cron jobs

Schedule recurring or one-shot tasks that the agent executes autonomously. Results are delivered back to the originating channel (Telegram, HTTP, etc.).

# Add a recurring job — every day at 9am
neko cron add "summarize yesterday's news" --schedule "0 0 9 * * *" --name morning-digest

# One-shot job
neko cron add "remind me to call the dentist" --at "2026-02-17 09:00"

# List jobs
neko cron list

# Announce results to a Telegram chat
neko cron edit morning-digest --announce "telegram:123456"

# View execution history
neko cron history --lines 10

The agent can also create cron jobs itself via the cron_manage tool — when a user on Telegram says "remind me every morning at 9am", the agent creates the job and automatically routes results back to that chat. No manual wiring needed.

Jobs are stored at workspace/cron/jobs.json and history at workspace/cron/history.jsonl. The scheduler ticks every 15 seconds with exponential backoff on failures (30s → 1m → 5m → 15m → 60m cap).

Sandboxed Python

Built-in Python interpreter via monty for safe code execution with configurable memory and recursion limits.

Supported platforms

Target Notes
x86_64-unknown-linux-gnu Standard Linux
x86_64-unknown-linux-musl Static binary, Alpine-friendly
aarch64-unknown-linux-gnu Raspberry Pi, ARM servers
x86_64-apple-darwin Intel Mac
aarch64-apple-darwin Apple Silicon

License

MIT

README mirrored from the source repository 7 days ago. The original is authoritative.

Questions

About Neko

How do I install Neko?

Run npx neko, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Neko safe to use with an AI agent?

Its trust score is 64 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Neko still maintained?

The last commit was 6 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.