MCP Server
A middleware server that acts as a bridge between Cursor IDE and AI models, validating AI responses using project context and Gemini.
Overview
MCP Server is a middleware server that acts as a bridge between Cursor IDE and AI models, validating AI responses using project context and Gemini.
To use MCP Server, clone the repository, install dependencies, configure your environment, and start the server. You can also deploy it locally using the provided script.
- Project context management - AI response validation - Integration with Gemini API - Real-time context updates - Comprehensive logging system - Easy local deployment
- Validating AI-generated responses in real-time.
- Managing project context for AI applications.
- Integrating with Cursor IDE for enhanced development workflows.
Add to your AI client
Use these steps to connect MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-relay-mind-server-dimahike": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-relay-mind-server-dimahike"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-relay-mind-server-dimahike": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-relay-mind-server-dimahike"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-relay-mind-server-dimahike": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-relay-mind-server-dimahike"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-relay-mind-server-dimahike": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-relay-mind-server-dimahike"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-relay-mind-server-dimahike": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-relay-mind-server-dimahike"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-relay-mind-server-dimahike": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-relay-mind-server-dimahike"
]
}
}
}FAQ
What are the prerequisites for using MCP Server?
You need Node.js, npm or yarn, a Google Cloud account for Gemini API access, and Cursor IDE.
How do I deploy MCP Server locally?
You can use the provided deployment script to set up the server easily.
What API endpoints are available?
The server provides several endpoints for health checks, context initialization, and AI response validation.