AI Context Manager
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., "@AI Context Managersync the latest assets from the cloud"
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.
AI Context Manager MCP
Servidor MCP (Model Context Protocol) en Python que actúa como sync agent entre el workspace local y la aplicación cloud.
¿Qué hace?
Gestiona la carpeta
.ai/en tu workspace (skills, prompts, specs, contexto, bootstrap)Sincroniza assets con la app cloud (
cloud_sync pull/push)Genera
MODEL_BOOTSTRAP.mdadaptado al entorno (vscode, claude, opencode, cli, generic)Mantiene
.gitignoreactualizado para no commitear el contexto local
Related MCP server: MCP Project Standards Server
Requisitos
Python 3.11+
pip / pipx
Instalación
# Con pipx (recomendado, instala en entorno aislado)
pipx install .
# O con pip en un virtualenv
python -m venv .venv
source .venv/bin/activate # Linux/macOS
.venv\Scripts\activate # Windows
pip install -e .Variables de entorno (obligatorias para sync cloud)
# Linux/macOS
export AI_CONTEXT_MANAGER_BASE_URL="https://cloud.example.com"
export AI_CONTEXT_MANAGER_TOKEN="pat_xxx"
# Windows (PowerShell)
$env:AI_CONTEXT_MANAGER_BASE_URL="https://cloud.example.com"
$env:AI_CONTEXT_MANAGER_TOKEN="pat_xxx"
# Windows (cmd)
set AI_CONTEXT_MANAGER_BASE_URL=https://cloud.example.com
set AI_CONTEXT_MANAGER_TOKEN=pat_xxxArrancar el servidor MCP
# Modo stdio (para clientes MCP como Claude Desktop, OpenCode, etc.)
python -m mcp_server
# O usando el script instalado
ai-context-manager serveConfiguración en VS Code (tasks.json)
Crear .vscode/tasks.json en tu proyecto:
{
"version": "2.0.0",
"tasks": [
{
"label": "AI Context Manager: Start MCP",
"type": "shell",
"command": "python -m mcp_server",
"options": {
"env": {
"AI_CONTEXT_MANAGER_BASE_URL": "https://cloud.example.com",
"AI_CONTEXT_MANAGER_TOKEN": "pat_xxx"
}
},
"problemMatcher": []
},
{
"label": "AI Context Manager: Sync (pull)",
"type": "shell",
"command": "ai-context-manager cloud-sync --direction pull",
"options": {
"env": {
"AI_CONTEXT_MANAGER_BASE_URL": "https://cloud.example.com",
"AI_CONTEXT_MANAGER_TOKEN": "pat_xxx"
}
},
"problemMatcher": []
}
]
}Configuración en Claude Desktop
Añadir en claude_desktop_config.json:
{
"mcpServers": {
"ai-context-manager": {
"command": "python",
"args": ["-m", "mcp_server"],
"env": {
"AI_CONTEXT_MANAGER_BASE_URL": "https://cloud.example.com",
"AI_CONTEXT_MANAGER_TOKEN": "pat_xxx"
}
}
}
}Configuración en OpenCode
Añadir en tu config de OpenCode:
{
"mcp": {
"servers": {
"ai-context-manager": {
"command": "python",
"args": ["-m", "mcp_server"],
"env": {
"AI_CONTEXT_MANAGER_BASE_URL": "https://cloud.example.com",
"AI_CONTEXT_MANAGER_TOKEN": "pat_xxx"
}
}
}
}
}Setup inicial de un proyecto
# 1. Inicializar .ai/ en el workspace
ai-context-manager init --mode workspace
# 2. Vincular con proyecto cloud
ai-context-manager cloud-link --project-key my-project
# 3. Descargar assets del cloud
ai-context-manager cloud-sync --direction pull
# 4. Asegurar .gitignore
ai-context-manager ensure-gitignoreTools disponibles (MCP)
Tool | Descripción |
| Inicializa |
| Añade |
| Escanea el repo buscando assets IA |
| Lista assets (skills/prompts/specs/context) |
| Registra un asset existente en el registry |
| Mueve un asset actualizando el registry |
| Elimina un asset del registry |
| Crea un nuevo skill desde template |
| Crea un nuevo prompt desde template |
| Crea una nueva spec desde template |
| Genera |
| Vincula workspace con proyecto cloud |
| Sincroniza assets (pull: cloud→local, push: local→cloud) |
| Descarga un backup específico del cloud |
Resources disponibles (MCP)
Resource | Descripción |
| Contenido completo del registry.json |
| Contenido del MODEL_BOOTSTRAP.md |
| Contenido de un skill por ID |
| Contenido de un prompt por ID |
| Contenido de una spec por ID |
Estructura local generada
.ai/
registry.json # fuente de verdad local
context/
AI_GUIDELINES.md
MODEL_BOOTSTRAP.md # generado por generate_bootstrap
skills/
*.md
prompts/
*.md
specs/
*.md
templates/
skill.md
prompt.md
spec.md
.sync/
state.json # estado de sync (hashes/ETags)
project.json # binding local_path <-> project_keyMaintenance
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-qualityDmaintenanceProvides persistent context synchronization and memory management for AI agents across sessions and projects, including file indexing, bug tracking, spatial navigation, and agent-to-agent handoff coordination.73MIT
- AlicenseAqualityDmaintenanceManages project standards, configurations, and API debugging for AI-assisted development, ensuring unified development practices across teams and machines.13455MIT
- Alicense-qualityBmaintenanceSyncs and manages configurations for dev tools like Claude Code and Gemini CLI across workspaces with snapshot history and rollback capabilities.Eclipse Public 2.0
- Alicense-qualityFmaintenanceBridges AI agents to a gcontext workspace in the cloud, enabling file and folder management while keeping secret values and script execution local.MIT
Related MCP Connectors
Securely search and manage workspace context files for AI agents and teams.
Cross-agent artifact workspace with provenance across Claude Code, Codex, Cursor, LangGraph.
Give your AI agent a persistent map of your project's structure, dependencies, and bugs.
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/dannybombastic/mcp-standard-ai'
If you have feedback or need assistance with the MCP directory API, please join our Discord server