symbiopulse
Integrates with GitHub Copilot via .github/copilot-instructions.md, enabling MCP-based memory and context for code understanding.
Integrates with OpenAI agents (e.g., Codex) via AGENTS.md protocol file, providing MCP tools for project memory and context layer.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@symbiopulsesniff for login functionality"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SymbioPulse: MCP-Native Neural Memory for Codebases
SymbioPulse is an MCP-first context layer for AI coding agents. It builds a persistent project memory from directory fingerprints, task-to-file synapses, DNA constraints, and reusable skills, then exposes that memory directly to mainstream agent clients through the Model Context Protocol.
The developer should only need to load the MCP server. Indexing, protocol injection, context assembly, and learning happen through MCP tool calls.
Visual Overview

Related MCP server: Tages
Core Loop

Environmental Pruning: Ignore runtime noise such as
.git,.symbio,.cursor, virtual environments, caches, build outputs, and dependency folders.Directory Fingerprinting: Scan source directories and cache structural snowflake fingerprints in
.symbio/fingerprints.json.Context Perception: Convert fingerprints into scent zones in
.symbio/scents.json.Dormant Anticipation: The MCP runtime initializes itself on demand and waits for the agent's task.
Resonance Matching:
sym_sniff(intent)first checks O(1) memory, then narrows the search to high-scent zones and ranks resonant files.Synaptic Bonding:
sym_form_synapse(task, file_paths)binds exact intents, vocabulary antigens, and token memories to the files that solved the task.Negative Feedback Regulation:
sym_add_dnaandsym_add_skillpersist constraints and reusable implementation knowledge for future tasks.
MCP Tools

Tool | Purpose |
| Primary context entry. Auto-initializes, refreshes stale indexes, returns target files, scent zones, fingerprints, DNA, skills, and feedback instructions. |
| Returns architectural constraints that must be respected before editing a file. |
| Records successful task-to-file bindings and strengthens file relations. |
| Stores concise reusable knowledge about a file. |
| Stores durable constraints learned from mistakes or project rules. |
| Returns all recorded DNA constraints. |
| Shows current memory, scent, fingerprint, and skill counts. |
| Forces initialization and protocol injection. Usually optional because tools self-initialize. |
| Forces a full project reindex. |
Agent Support
SymbioPulse is not Cursor-specific. The MCP runtime writes lightweight protocol files for mainstream coding agents so each client receives the same behavioral contract:
Agent surface | Protocol file |
Codex / OpenAI agents |
|
Claude Code |
|
Gemini agents |
|
Cursor |
|
GitHub Copilot |
|
Windsurf |
|
Cline |
|
Each file points the agent to the same MCP-first workflow: sniff first, check DNA before edits, form synapses after successful work, and record reusable skills or durable constraints.
If a protocol file already exists in the user's project, SymbioPulse preserves the user's content and only appends or refreshes a marked managed block:
<!-- symbiopulse:managed:start -->
...
<!-- symbiopulse:managed:end -->Content outside that block is never rewritten by protocol injection.
Runtime State

SymbioPulse writes project-local memory under .symbio/:
scents.json: directory scent map.fingerprints.json: structural directory fingerprints.synapses.json: exact, antigen, and token task memories.relations.json: file-to-file affinity graph.dna.json: project constraints.skills.json: learned file summaries.
The MCP runtime also writes lightweight agent protocol files so compatible agents know to sniff first, check DNA before edits, and form synapses after successful work.
Architecture
Neural Core:
.symbiostate, synapses, DNA, relations, and fingerprints.Olfactory Engine: source pruning, directory scanning, static symbol extraction, and optional LLM-enhanced scent keywords.
Resonator Engine: file-level resonance ranking inside scented zones.
Autonomous MCP Runtime: self-initialization, freshness checks, protocol injection, context assembly, and learning tools.
There is no separate user-facing workflow or background watcher. MCP is the product surface.
Installation
Requirements
Python package runtime:
>=3.8.Verified development environment: Python
3.13.13on Windows.Recommended launcher for Cursor and other stdio MCP clients:
uvxfromuv.
Install uv on Windows:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"Restart Cursor after installing uv so the GUI process can see uvx on PATH.
Cursor / MCP Clients
{
"mcpServers": {
"symbiopulse": {
"command": "uvx",
"args": ["--from", "symbiopulse", "sym-mcp"]
}
}
}If Cursor cannot find uvx, use the absolute executable path returned by:
Get-Command uvxLocal Development
pip install -e .
sym-mcpEnable optional LLM-enhanced semantic scent generation only when needed:
pip install -e ".[semantic]"The default package intentionally does not install litellm; static fingerprints and fallback keywords work without it, and first-run MCP startup stays lighter.
Smoke Tests In Cursor
After adding .cursor/mcp.json, ask Cursor to verify the server once:
Use the symbiopulse MCP server to run sym_status and show the raw result.Expected result shape:
SymbioPulse Status:
- Synapses: 0
- DNA Rules: 0
- Scent Zones: ...
- Directory Fingerprints: ...
- Skills: 0Then test automatic usage without mentioning SymbioPulse:
Find the authentication entry files in this project. Do not modify files.Expected behavior: Cursor should run sym_sniff first, then continue with native search only if it needs more detail. After the answer, it should call sym_form_synapse with the files that mattered.
Validate project rules:
Record a project rule: page components must not access localStorage directly; use the storage service instead.Then ask for a change that would violate it:
Add direct localStorage access in a page component.Expected behavior: before editing, the agent should call sym_check_dna and avoid violating the recorded DNA rule.
Troubleshooting
'uvx' is not recognized as an internal or external command
Install
uv, restart Cursor, or setcommandto the absoluteuvx.exepath.
Cursor logs dependency downloads as [error]
Lines like
Downloading pydantic-core,Downloading pywin32, orDownloaded pygmentsare often install progress printed on stderr, not a server failure. Wait for the first install to finish and avoid repeated reloads.
Cursor still injects the old protocol text
Include
--refreshin theuvxargs once to force a clean tool environment:
{
"mcpServers": {
"symbiopulse": {
"command": "uvx",
"args": ["--refresh", "--from", "symbiopulse", "sym-mcp"]
}
}
}Run
sym_initializeonce so the managed protocol block is refreshed.Check that
.cursor/rules/symbiopulse.mdccontains## Mandatory Tool Use, not the old## Required Workflow.
pip appears to hang and ends with KeyboardInterrupt
The command was interrupted before installation completed. Re-run it inside the activated virtual environment:
python -m pip install --upgrade build twineThis 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.
Latest Blog Posts
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/lzk-gh/symbiopulse'
If you have feedback or need assistance with the MCP directory API, please join our Discord server