Nexus Core
OfficialProvides tools for reading, searching, drafting, and sending emails via the Gmail API.
Provides tools for managing Google Contacts (People API) for contact retrieval and updates.
Provides tools for managing Google Calendar events, including creation, update, deletion, and retrieval.
Integrates with local Ollama models as an alternative LLM provider for inference and tool use.
Enables receiving messages and sending replies through the Telegram Bot API.
Nexus Core
A self-hostable, multi-MCP personal-assistant framework with multi-provider LLM orchestration, a real safety model, and a production-grade test suite.
Nexus Core is the engine behind a Telegram-based personal assistant: it takes a message (text or voice), routes it through an LLM, lets the model call tools exposed by a fleet of Model Context Protocol servers, gates anything destructive behind explicit human approval, and replies. It is designed to run on your own machine against your own accounts — no third-party assistant cloud in the middle.
This is a clean, reference extraction: all personal data, credentials, and proprietary business logic have been removed. Bring your own keys and accounts.

Illustrative interaction — showing in-message self-correction and the approval gate that holds destructive actions.
What's interesting here
Multi-provider LLM orchestration (
services/brain_router.py) — a single entry point that routes a turn to a local Claude/Codex CLI subprocess (with the MCP servers loaded) or a local Ollama model, with circuit breakers, retries, and graceful fallback to a deterministic responder when every provider is down.An agentic tool loop (
pipeline/tool_dispatcher.py) — the model proposes tool calls, the dispatcher executes them, feeds results back, and iterates to a final reply, with dedup, thread binding, and a hard iteration cap.A real safety model — a destructive-intent classifier plus an approval-gate flow: anything that deletes, sends, or overwrites is held until the user approves it in-chat. Cross-user access is rejected; tool inputs are validated.
Conversational recovery + self-correction — interprets messy follow-ups ("actually make it Tuesday", "June 2 no June 4") and echoes the correction so a revision is never silently applied.
A fleet of MCP servers (
mcp_servers/) — reminders & tasks, a knowledge store, filesystem access behind a security boundary, PDF tools, Google Calendar / Gmail / Contacts, a browser agent, and a capability-introspection server.Production hardening built in — user-scoped data access, pre-commit secret scanning + pre-push test hooks, structured logging with secret redaction, and a documented data map.
Related MCP server: Memory Nexus
Architecture
Telegram ─► pipeline/unified.py ─► auth gate ─► tool_dispatcher ─┐
│ proposes tool calls
brain_router (Claude / Ollama) ◄┘
│
┌──────────────────────────┼───────────────────────────┐
▼ ▼ ▼
MCP servers (mcp_servers/) services/ (domain logic) repositories/ (SQLAlchemy)
reminders, knowledge, reminder, task, memory, users, reminders, tasks,
filesystem, pdf, calendar, approval, recovery, memories, approvals,
email, contacts, web, self self-correction, voice conversation, audit, cronSee docs/ARCHITECTURE.md for the full tour.
MCP servers
Server | Purpose |
| Reminders + tasks over the shared SQLite store |
| Long-term key/value memory, decisions log, journal |
| Time, math, units, cron management, and small utilities |
| Read/search/write files behind an allow-list + denylist |
| Generate, manipulate, and fill PDF forms |
| Google Calendar (OAuth, optional) |
| Gmail read/search/draft/send (OAuth, optional) |
| Google Contacts / People API (OAuth, optional) |
| Headless browser agent (Playwright, optional) |
| Capability introspection ("what can you access?") |
Quick start
git clone https://github.com/Noumenon-ai/nexus-core.git
cd nexus-core
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
# optional: local Whisper voice transcription (heavy — pulls torch);
# only needed for VOICE_INPUT_BACKEND=whisper_local
pip install -r requirements-voice.txt
cp .env.example .env # fill in TELEGRAM_BOT_TOKEN + ALLOWED_TELEGRAM_IDS
./scripts/install-git-hooks.sh # optional: secret-scan + test gates
python -m pytest -q # run the suite
python main.py # start the assistantThe Google, voice, and browser integrations are optional and key-gated — the core (reminders, tasks, knowledge, filesystem) runs with no third-party keys.
Configuration
All configuration is via environment variables — see .env.example
for the full annotated list. Nothing is hardcoded; secrets live only in .env
(gitignored) and never in the codebase.
Security
Data isolation: every query on a user-scoped table filters by a server-derived
user_id; cross-user access is rejected.Approval gate: destructive tool calls require explicit in-chat approval.
Secrets:
.gitignoreblocks every secret shape; a pre-commit hook scans staged diffs; logs are redacted.Data map:
docs/DATA_MAP.mdlists what is stored, where, who can access it, and retention.
Testing
python -m pytest -q # 1500+ tests, synthetic fixtures, no network or keys requiredLicense
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceComplete Model Context Protocol (MCP) server designed to facilitate seamless interaction between Large Language Models (LLMs) and end-users. It provides a robust set of tools for notifications, confirmations, selections, and text inputs, supporting multiple rendering modes including Console, GUI, and Telegram Bot.2MIT

Memory Nexusofficial
Alicense-qualityDmaintenancePersistent memory and handoff intelligence layer for MCP agents. Most memory servers retrieve text — Memory Nexus compounds operational context, learning from usage and progressively synthesizing observations into higher-order intelligence across sessions and tools.MIT- Alicense-qualityCmaintenanceMCP server that wraps the nexus CLI, giving AI agents cross-session memory, semantic search, preference learning, and smart context injection.86MIT
- Flicense-qualityDmaintenanceA robust, lightweight Model Context Protocol (MCP) server designed to empower your AI Agents with context-awareness, safe execution sandboxes, and dedicated thought logs.
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Private-by-default, local-first memory/context/task orchestrator for MCP apps and agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Noumenon-ai/nexus-core'
If you have feedback or need assistance with the MCP directory API, please join our Discord server