conxt
Persistent AI memory layer for developers.
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноМожет изменять данные
Что умеет
- Get Context: Load relevant memories from your Conxt graph for the current task. Args: query: What you are working on or need context for user_id: Your Conxt user ID (optional — auto-resolved from API
- Get Memories: List personal memories from your Conxt graph, with optional filters. Team memories are excluded — use get_team_memories for those. Args: user_id: Your Conxt user ID (optional — auto-reso
- Search Decisions: Search your decisions and coding rules for a specific topic. Args: query: What decision or rule to search for user_id: Your Conxt user ID (optional — auto-resolved from API key)
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
Persistent AI memory layer for developers. Never re-explain your stack to AI tools again.
Conxt captures your decisions, coding rules, preferences, tool choices, and workflows across Claude, ChatGPT, Gemini, Cursor, and Windsurf — and surfaces them automatically at the start of every new session.
8 MCP tools:
- get_context — load relevant memories for the current task
- get_memories — list memories with type/source/date filters
- get_pinned — fetch your pinned memories
- search_decisions — search decisions and coding rules by topic
- add_memory — save a new memory from any session
- list_my_teams — list your team workspaces
- get_team_memories — read shared team memories
- add_team_memory — write to a team workspace
Setup: Generate an API key at conxt.dev/dashboard → Settings → API Keys. Takes 2 minutes.
Free tier: 200 memories. Pro: $9/mo. Team: $25/seat.
Список инструментов сервера (8)
Технические названия из tools/list. Нужны только разработчикам.
| get_context | Load relevant memories from your Conxt graph for the current task. Args: query: What you are working on or need context for user_id: Your Conxt user ID (optional — auto-resolved from API key) limit: Max memories to return (default 15) |
| get_memories | List personal memories from your Conxt graph, with optional filters. Team memories are excluded — use get_team_memories for those. Args: user_id: Your Conxt user ID (optional — auto-resolved from API key) memory_type: Filter by type — decision, preference, entity, open_question, coding_rule, tool_choice, workflow (optional) source: Filter by platform — claude, chatgpt, gemini, copilot, mcp (optional) date_from: Filter memories from this datetime — ISO format or natural e.g. "2026-05-24", "2026-05-24T15:40:00" (optional) date_to: Filter memories up to this datetime — ISO format (optional) limit: Max results (default 20) |
| search_decisions | Search your decisions and coding rules for a specific topic. Args: query: What decision or rule to search for user_id: Your Conxt user ID (optional — auto-resolved from API key) |
| get_pinned | Get your pinned memories — the most important permanent context. Args: user_id: Your Conxt user ID (optional — auto-resolved from API key) |
| add_memory | Save a new personal memory to your Conxt graph. For team memories, use add_team_memory instead. Args: content: What to remember memory_type: decision, preference, entity, open_question, coding_rule, tool_choice, workflow user_id: Your Conxt user ID (optional — auto-resolved from API key) |
| list_my_teams | List all teams you belong to, with their IDs. Call this first when the user wants to read or write team memories — you'll need the team_id from this list to pass to get_team_memories or add_team_memory. Args: user_id: Your Conxt user ID (optional — auto-resolved from API key) |
| get_team_memories | Read memories belonging to a specific team workspace. Team memories are isolated from personal memories — only members of the team can read them. Call list_my_teams first if you don't know the team_id. Args: team_id: The team's UUID (get it from list_my_teams) memory_type: Filter by type — decision, preference, entity, open_question, coding_rule, tool_choice, workflow (optional) limit: Max results (default 20, max 50) user_id: Your Conxt user ID (optional — auto-resolved from API key) |
| add_team_memory | Save a memory to a team workspace (visible to all team members). Use this when the user explicitly mentions a team or wants a decision shared with their team. For personal memories, use add_memory instead. Args: team_id: The team's UUID (get it from list_my_teams) content: What to remember memory_type: decision, preference, entity, open_question, coding_rule, tool_choice, workflow user_id: Your Conxt user ID (optional — auto-resolved from API key) |