Cursor10x MCP
未认领The Cursor10x MCP is a persistent multi-dimensional memory system for Cursor that enhances AI assistants with conversation context, project history, and code relationships across sessions.
工具(37 个)
action
(string, required): Action performed on the file (open, edit, close, etc.)
actor
(string, required): Actor performing the action (user, assistant, system)
content
(string, required): Content of the user message
contentId
(number, optional): ID of the content this vector represents (for store, update, delete)
contentType
(string, optional): Type of content ("message", "file", "snippet", etc.)
context
(string, optional): Context for the episode
description
(string, required): Description of the milestone
display
Contains the banner to be shown to the user
filename
(string, required): Path to the file being tracked
importance
(string, optional): Importance level ("low", "medium", "high", "critical"), defaults to "low"
internal
Contains the comprehensive context for the agent's use
limit
(number, optional): Maximum number of messages to retrieve, defaults to 10
mcp_cursor10x_checkHealth
Checks the health of the memory system and its database connection.
mcp_cursor10x_endConversation
Ends a conversation by combining multiple operations in one call: storing the assistant's final message, recording a milestone for what was accomplished, and logging an episode in the episodic memory. This unified tool replaces the need for separate storeAssistantMessage, storeMilestone, and recordE
mcp_cursor10x_getActiveFiles
Retrieves active files from the short-term memory.
mcp_cursor10x_getComprehensiveContext
Retrieves a unified context from all memory subsystems, combining short-term, long-term, and episodic memory.
mcp_cursor10x_getMemoryStats
Retrieves detailed statistics about the memory system.
mcp_cursor10x_getRecentEpisodes
Retrieves recent episodes from the episodic memory.
mcp_cursor10x_getRecentMessages
Retrieves recent messages from the short-term memory.
mcp_cursor10x_initConversation
Initializes a conversation by storing the user message, generating a banner, and retrieving context in one operation. This unified tool replaces the need for separate generateBanner, getComprehensiveContext, and storeUserMessage calls at the beginning of each conversation.
mcp_cursor10x_manageVector
Unified tool for managing vector embeddings with operations for store, search, update, and delete.
mcp_cursor10x_recordEpisode
Records an episode (action) in the episodic memory.
mcp_cursor10x_storeAssistantMessage
Stores an assistant message in the short-term memory system.
mcp_cursor10x_storeDecision
Stores a project decision in the long-term memory.
mcp_cursor10x_storeMilestone
Stores a project milestone in the long-term memory.
mcp_cursor10x_storeRequirement
Stores a project requirement in the long-term memory.
mcp_cursor10x_storeUserMessage
Stores a user message in the short-term memory system.
mcp_cursor10x_trackActiveFile
Tracks an active file being accessed or modified by the user.
metadata
(object, optional): Additional metadata for the message
milestone_description
(string, required): Description of what was accomplished
milestone_title
(string, required): Title of the milestone to record
operation
(string, required): Operation to perform ("store", "search", "update", "delete")
reasoning
(string, optional): Reasoning behind the decision
threshold
(number, optional): Similarity threshold for search operation, defaults to 0.7
title
(string, required): Title of the milestone
vector
(array, optional): Vector data as array of numbers (for store, update) or query vector (for search)
vectorId
(number, optional): ID of the vector to update or delete