MCP Server Overview
The FL Repos Intelligence MCP Server exposes the knowledge graph as a set of tools that any MCP-compatible AI agent can call. This enables conversational, natural-language access to the graph without writing API calls or Cypher queries manually.What is MCP?
Model Context Protocol (MCP) is an open standard from Anthropic for connecting AI models to external data sources and tools. Any MCP host (Claude Desktop, Cursor, Windsurf, etc.) can connect to an MCP server and expose its tools to the AI model during a conversation.Transports
The FL Repos MCP server supports two transports:stdio
For Claude Desktop and Cursor. The host launches the server as a subprocess and communicates over stdin/stdout. Lowest latency, runs locally.
SSE (Server-Sent Events)
For network clients. Connect to the deployed server at
https://fl-mcp-production.up.railway.app. No local setup required.Claude Desktop Setup
Step 1: Locate the config file
Step 2: Add the FL Repos server
Step 3: Restart Claude Desktop
After saving the config, quit and relaunch Claude Desktop. The FL Repos tools will appear in the tool list.Step 4: Try a query
Cursor Setup
Edit .cursor/mcp.json
SSE Transport (Network Clients)
For clients that support SSE-based MCP connections, connect to:Example: Connecting with the MCP Python SDK
Read-Only vs. Write Mode
The MCP server starts in read-only mode by default. This means only the read tools are available (10 tools). Write tools are disabled to prevent AI agents from accidentally mutating the graph. To enable write tools, start the server with the--write flag:
Environment Variables
Available Tools Summary
See MCP Tools for full parameter documentation for each tool.