Skip to main content
Glama

Cursor Conversations MCP Server

by vltansky

find_related_conversations

Identify and retrieve related discussions by analyzing shared files, folders, programming languages, size, or timing. Explore connections across conversations to trace project evolution or find similar problem-solving sessions.

Instructions

Find conversations related to a reference conversation based on shared files, folders, programming languages, similar size, or temporal proximity. Use this to discover related discussions, find conversations about the same codebase/project, identify similar problem-solving sessions, or trace the evolution of ideas across multiple conversations.

Input Schema

NameRequiredDescriptionDefault
includeScoreBreakdownNoInclude detailed breakdown of how similarity scores were calculated
maxResultsNoMaximum number of related conversations to return (1-50)
minScoreNoMinimum similarity score threshold (0.0-1.0)
outputModeNoOutput format: "json" for formatted JSON (default), "compact-json" for minified JSONjson
referenceConversationIdYesID of the conversation to find related conversations for
relationshipTypesNoTypes of relationships to consider when finding related conversations

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "includeScoreBreakdown": { "default": false, "description": "Include detailed breakdown of how similarity scores were calculated", "type": "boolean" }, "maxResults": { "default": 10, "description": "Maximum number of related conversations to return (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "minScore": { "default": 0.1, "description": "Minimum similarity score threshold (0.0-1.0)", "maximum": 1, "minimum": 0, "type": "number" }, "outputMode": { "default": "json", "description": "Output format: \"json\" for formatted JSON (default), \"compact-json\" for minified JSON", "enum": [ "json", "compact-json" ], "type": "string" }, "referenceConversationId": { "description": "ID of the conversation to find related conversations for", "minLength": 1, "type": "string" }, "relationshipTypes": { "default": [ "files" ], "description": "Types of relationships to consider when finding related conversations", "items": { "enum": [ "files", "folders", "languages", "size", "temporal" ], "type": "string" }, "type": "array" } }, "required": [ "referenceConversationId" ], "type": "object" }

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/vltansky/cursor-conversations-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server