Your External Brain, Amplified - An ADHD-optimized memory augmentation system for developers who leverage hyperfocus as a superpower.
HyperFocache is a high-performance cognitive tool designed specifically for developers with ADHD. It provides seamless memory management and retrieval, helping you maintain context across interruptions, track your problem-solving journeys, and build a searchable knowledge base that grows with you.
- 20+ Memory Tools: Comprehensive suite for saving, searching, evolving, and organizing memories
- Semantic Search: Find memories by meaning, not just keywords
- Context Preservation: Save and restore work states when switching tasks or getting interrupted
- Problem-Solving Breadcrumbs: Track your debugging journeys, including dead ends and breakthroughs
- Memory Evolution: Update existing memories without losing history
- Intelligent Consolidation: Automatically merge related memories to reduce clutter
- Time-Based Retrieval: Navigate your memory timeline effortlessly
- Relationship Mapping: Visualize connections between memories
- ADHD-Optimized: Built by and for developers with ADHD
- Node.js >= v18.0.0 (for local installations)
- Cursor, Windsurf, Claude Desktop, or another MCP Client
Note: HyperFocache is entirely remote-based, so most installations will use the remote server endpoints. For Docker-based installations, you'll need the mcp-remote fork with Docker support.
Install in Cursor
Go to: Settings
-> Cursor Settings
-> MCP
-> Add new global MCP server
Since Cursor 1.0, you can use one-click installation or paste the configuration into your ~/.cursor/mcp.json
file.
{
"mcpServers": {
"hyperfocache": {
"url": "https://hyperfocache.offendingcommit.com/mcp"
}
}
}
{
"mcpServers": {
"hyperfocache": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
]
}
}
}
Install in Windsurf
Add this to your Windsurf MCP config file. See Windsurf MCP docs for more info.
{
"mcpServers": {
"hyperfocache": {
"serverUrl": "https://hyperfocache.offendingcommit.com/sse"
}
}
}
{
"mcpServers": {
"hyperfocache": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
]
}
}
}
Install in Claude Desktop
Add this to your Claude Desktop claude_desktop_config.json
file. See Claude Desktop MCP docs for more info.
Since Claude Desktop primarily supports stdio connections, you'll need to use the Docker-based mcp-remote fork:
{
"mcpServers": {
"hyperfocache": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
]
}
}
}
Install in Claude Code
Run this command. See Claude Code MCP docs for more info.
claude mcp add --transport http hyperfocache https://hyperfocache.offendingcommit.com/mcp
Or using SSE transport:
claude mcp add --transport sse hyperfocache https://hyperfocache.offendingcommit.com/sse
claude mcp add hyperfocache -- docker run -i --rm -v mcp-auth:/home/mcp/.mcp-auth ghcr.io/offendingcommit/mcp-remote:latest https://hyperfocache.offendingcommit.com/sse
Install in VS Code
Add this to your VS Code MCP config file. See VS Code MCP docs for more info.
"mcp": {
"servers": {
"hyperfocache": {
"type": "http",
"url": "https://hyperfocache.offendingcommit.com/mcp"
}
}
}
"mcp": {
"servers": {
"hyperfocache": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
]
}
}
}
Install in Visual Studio 2022
Follow the Visual Studio MCP Servers documentation.
Add this to your Visual Studio MCP config file:
{
"mcp": {
"servers": {
"hyperfocache": {
"type": "http",
"url": "https://hyperfocache.offendingcommit.com/mcp"
}
}
}
}
Install in Zed
Add this to your Zed settings.json
. See Zed Context Server docs for more info.
{
"context_servers": {
"hyperfocache": {
"command": {
"path": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
]
},
"settings": {}
}
}
}
Install in Cline
Add this to your Cline MCP settings:
{
"mcpServers": {
"hyperfocache": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
],
"disabled": false,
"autoApprove": []
}
}
}
Install in Trae
Use the Add manually feature and fill in the JSON configuration. For more details, visit the Trae documentation.
{
"mcpServers": {
"hyperfocache": {
"url": "https://hyperfocache.offendingcommit.com/mcp"
}
}
}
{
"mcpServers": {
"hyperfocache": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
]
}
}
}
Install in Gemini CLI
See Gemini CLI Configuration for details.
- Open the Gemini CLI settings file at
~/.gemini/settings.json
- Add the following to the
mcpServers
object:
{
"mcpServers": {
"hyperfocache": {
"httpUrl": "https://hyperfocache.offendingcommit.com/mcp"
}
}
}
Install in BoltAI
Open the "Settings" page, navigate to "Plugins," and enter:
{
"mcpServers": {
"hyperfocache": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
]
}
}
}
More information available on BoltAI's Documentation site.
Install in Augment Code
- Click the hamburger menu
- Select Settings
- Navigate to the Tools section
- Click the + Add MCP button
- Enter the following command:
docker run -i --rm -v mcp-auth:/home/mcp/.mcp-auth ghcr.io/offendingcommit/mcp-remote:latest https://hyperfocache.offendingcommit.com/sse
- Name the MCP: HyperFocache
- Click the Add button
Add to your settings.json
:
"augment.advanced": {
"mcpServers": [
{
"name": "hyperfocache",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
]
}
]
}
Install in Roo Code
Add this to your Roo Code MCP configuration file. See Roo Code MCP docs for more info.
{
"mcpServers": {
"hyperfocache": {
"type": "streamable-http",
"url": "https://hyperfocache.offendingcommit.com/mcp"
}
}
}
{
"mcpServers": {
"hyperfocache": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
]
}
}
}
Install in Zencoder
- Go to the Zencoder menu (...)
- Select Agent tools
- Click on Add custom MCP
- Add the name and configuration:
{
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
]
}
- Click the Install button
Install in Amazon Q Developer CLI
Add this to your Amazon Q Developer CLI configuration file. See Amazon Q Developer CLI docs for more details.
{
"mcpServers": {
"hyperfocache": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
]
}
}
}
Install in Qodo Gen
See Qodo Gen docs for more details.
- Open Qodo Gen chat panel in VSCode or IntelliJ
- Click Connect more tools
- Click + Add new MCP
- Add the following configuration:
{
"mcpServers": {
"hyperfocache": {
"url": "https://hyperfocache.offendingcommit.com/mcp"
}
}
}
Install in JetBrains AI Assistant
See JetBrains AI Assistant Documentation for more details.
- Go to
Settings
->Tools
->AI Assistant
->Model Context Protocol (MCP)
- Click
+ Add
- Select
As JSON
option - Add this configuration:
{
"mcpServers": {
"hyperfocache": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
]
}
}
}
- Click
OK
and thenApply
Install in Warp
See Warp Model Context Protocol Documentation for details.
- Navigate
Settings
>AI
>Manage MCP servers
- Click the
+ Add
button - Paste the configuration:
{
"hyperfocache": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
],
"env": {},
"working_directory": null,
"start_on_launch": true
}
}
- Click
Save
Install in Opencode
Add this to your Opencode configuration file. See Opencode MCP docs for more info.
"mcp": {
"hyperfocache": {
"type": "remote",
"url": "https://hyperfocache.offendingcommit.com/mcp",
"enabled": true
}
}
{
"mcp": {
"hyperfocache": {
"type": "local",
"command": [
"docker",
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
],
"enabled": true
}
}
}
Install in Copilot Coding Agent
Add to your Repository->Settings->Copilot->Coding agent->MCP configuration:
{
"mcpServers": {
"hyperfocache": {
"type": "http",
"url": "https://hyperfocache.offendingcommit.com/mcp"
}
}
}
For more information, see the official GitHub documentation.
Install in Kiro
See Kiro Model Context Protocol Documentation for details.
- Navigate
Kiro
>MCP Servers
- Click the
+ Add
button - Paste the configuration:
{
"mcpServers": {
"hyperfocache": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
],
"env": {},
"disabled": false,
"autoApprove": []
}
}
}
- Click
Save
Install in LM Studio
See LM Studio MCP Support for more information.
- Navigate to
Program
(right side) >Install
>Edit mcp.json
- Paste the configuration:
{
"mcpServers": {
"hyperfocache": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
]
}
}
}
- Click
Save
- Toggle the MCP server on/off from the right side under
Program
Install in Perplexity Desktop
See Local and Remote MCPs for Perplexity for more information.
- Navigate
Perplexity
>Settings
- Select
Connectors
- Click
Add Connector
- Select
Advanced
- Enter Server Name:
HyperFocache
- Paste the following JSON:
{
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
],
"env": {}
}
- Click
Save
Using Docker Directly
If you prefer to run the MCP server in a Docker container without a specific client:
# Pull the latest image
docker pull ghcr.io/offendingcommit/mcp-remote:latest
# Run with persistent token storage
docker run -it \
-v mcp-auth:/home/mcp/.mcp-auth \
ghcr.io/offendingcommit/mcp-remote:latest \
https://hyperfocache.offendingcommit.com/sse
Create a docker-compose.yml
file:
version: '3.8'
services:
hyperfocache:
image: ghcr.io/offendingcommit/mcp-remote:latest
container_name: hyperfocache
volumes:
- mcp-auth:/home/mcp/.mcp-auth
ports:
- "3334:3334" # For OAuth callback if needed
command: ["https://hyperfocache.offendingcommit.com/sse"]
restart: unless-stopped
volumes:
mcp-auth:
driver: local
Run with: docker-compose up
# Clone the mcp-remote repository
git clone https://github.com/offendingcommit/mcp-remote.git
cd mcp-remote
# Build the image
docker build -t mcp-remote:local .
# Run HyperFocache
docker run -it \
-v mcp-auth:/home/mcp/.mcp-auth \
mcp-remote:local \
https://hyperfocache.offendingcommit.com/sse
Install on Windows
For Windows users, the configuration differs slightly from Linux/macOS. Here's an example using Cline:
{
"mcpServers": {
"hyperfocache": {
"command": "cmd",
"args": [
"/c",
"docker",
"run",
"-i",
"--rm",
"-v",
"mcp-auth:/home/mcp/.mcp-auth",
"ghcr.io/offendingcommit/mcp-remote:latest",
"https://hyperfocache.offendingcommit.com/sse"
],
"disabled": false,
"autoApprove": []
}
}
}
Make sure Docker Desktop for Windows is installed and running before using the configuration.
We value your input and want to make HyperFocache better for everyone!
Google Form: https://forms.gle/rPSh6xeeSUbngAbu7
- Feature requests
- Bug reports
- UX/UI feedback
- General suggestions
For technical issues, bugs, or feature requests, please use our feedback form above. We're actively monitoring all submissions and prioritize based on community needs.
- Workflow improvements
- Integration ideas
- Performance optimizations
- Accessibility enhancements
Join our growing community of developers using HyperFocache to amplify their cognitive abilities. Your experiences and insights help shape the future of the project.
Visit hyperfocache.com to begin using HyperFocache with your GitHub account.
HyperFocache combines neural network concepts with cache memory blocks, creating a modern tech-forward solution for cognitive augmentation. It's not just a tool - it's your external brain, designed to work the way your mind does.
Built with β€οΈ for the ADHD developer community