Synapse MCP runs locally as a high-performance HTTP / Server-Sent Events (SSE) server on port 8585. Use the 1-click installer to auto-detect and configure your editor, or paste the exact configuration snippet for your AI tool below.
After checkout succeeds, refresh the entitlement cached by your local installation to unlock Pro immediately. Choose any of these:
npx @myelixlabs/synapse-mcp auth refresh
Download the public launcher directly if you do not want to use npm or the shell installer.
Choose the file for your OS, save it as synapse-mcp (or synapse-mcp.exe on Windows), and put it on your PATH.
# Linux x86_64
curl -fL https://downloads.synapse-mcp.dev/synapse-mcp/latest/synapse-mcp-linux-x86_64 -o synapse-mcp
chmod +x synapse-mcp
# Linux ARM64
curl -fL https://downloads.synapse-mcp.dev/synapse-mcp/latest/synapse-mcp-linux-aarch64 -o synapse-mcp
chmod +x synapse-mcp
# macOS Apple Silicon
curl -fL https://downloads.synapse-mcp.dev/synapse-mcp/latest/synapse-mcp-darwin-aarch64 -o synapse-mcp
chmod +x synapse-mcp
# Windows x86_64
curl -fL https://downloads.synapse-mcp.dev/synapse-mcp/latest/synapse-mcp-windows-x86_64.exe -o synapse-mcp.exe
Synapse MCP runs locally, but installation and authentication need access to these servers:
synapse-mcp.dev — web sign-in, dashboard, and device approval.api.synapse-mcp.dev — device auth and licence renewal API.downloads.synapse-mcp.dev — launcher and runtime downloads.For offline usage or usage behind a corporate firewall, contact us for details about allow-listing, mirrored downloads, and managed deployment options.
Synapse MCP works natively with 23+ AI coding environments:
If you prefer to configure your editor manually, copy the exact JSON/TOML/YAML snippet below for your tool.
{
"mcpServers": {
"synapse": {
"url": "http://localhost:8585"
}
}
}
{
"mcpServers": {
"synapse": {
"serverUrl": "http://localhost:8585"
}
}
}
claude mcp add synapse http://localhost:8585
{
"mcpServers": {
"synapse": {
"command": "npx",
"args": ["-y", "mcp-remote", "http://localhost:8585"]
}
}
}
{
"mcpServers": {
"synapse": {
"url": "http://localhost:8585"
}
}
}
{
"mcpServers": {
"synapse": {
"httpUrl": "http://localhost:8585"
}
}
}
{
"servers": {
"synapse": {
"type": "http",
"url": "http://localhost:8585"
}
}
}
{
"mcpServers": {
"synapse": {
"url": "http://localhost:8585"
}
}
}
{
"context_servers": {
"synapse": {
"command": {
"path": "npx",
"args": ["mcp-remote", "http://localhost:8585"]
}
}
}
}
[mcp_servers.synapse]
url = "http://localhost:8585"
mcpServers:
- name: synapse
url: http://localhost:8585
Configure via IDE settings UI (2025.2+):
Tools → AI Assistant → Model Context Protocol (MCP)+ (Add) and select transport type: HTTPhttp://localhost:8585 and click OK-- Neovim (mcphub.nvim)
synapse = { url = "http://localhost:8585" }
# Helix (~/.config/helix/config.toml)
[editor.mcp.servers.synapse]
url = "http://localhost:8585"
;; Emacs (mcp.el)
(use-package mcp :config (mcp-connect-http "synapse" "http://localhost:8585"))
Run the 1-click setup command now or upgrade to Synapse Pro for advanced impact analysis, crash trace resolution, and encrypted knowledge persistence.