@lightfastai/mcp
v0.1.0-alpha.5
Published
Lightfast Neural Memory MCP Server - MCP for the Lightfast Memory API
Readme
@lightfastai/mcp
Model Context Protocol (MCP) server for Lightfast Neural Memory - Connect Claude and other AI assistants to your workspace memory.
What is MCP?
Model Context Protocol (MCP) is an open protocol that enables AI assistants like Claude to securely access external tools and data sources. This server gives Claude access to your Lightfast workspace memory.
Features
- Semantic Search - Let Claude search your workspace memory
- Content Retrieval - Fetch full documents and observations
- Similar Content Discovery - Find semantically related items
- Related Memories - Discover connected information
- Graph Traversal - Explore memory relationships
- Smart Context - Automatically find relevant context for conversations
- Zero Config - Works with Claude Desktop, Code, Cursor, and more
Installation
Quick Start (npx)
No installation needed - run directly:
npx -y @lightfastai/mcp --api-key sk-lf-...Global Installation
npm install -g @lightfastai/mcp
# or
pnpm add -g @lightfastai/mcpSetup
Claude Desktop
Add to your Claude Desktop config (claude_desktop_config.json):
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"lightfast": {
"command": "npx",
"args": ["-y", "@lightfastai/mcp", "--api-key", "sk-lf-YOUR_KEY_HERE"]
}
}
}Using environment variables:
{
"mcpServers": {
"lightfast": {
"command": "npx",
"args": ["-y", "@lightfastai/mcp"],
"env": {
"LIGHTFAST_API_KEY": "sk-lf-YOUR_KEY_HERE"
}
}
}
}Claude Code
Add to .mcp.json in your project root:
{
"mcpServers": {
"lightfast": {
"command": "npx",
"args": ["-y", "@lightfastai/mcp", "--api-key", "sk-lf-YOUR_KEY_HERE"]
}
}
}Cursor
Add to Cursor settings (~/.cursor/config.json):
{
"mcp": {
"servers": {
"lightfast": {
"command": "npx",
"args": ["-y", "@lightfastai/mcp", "--api-key", "sk-lf-YOUR_KEY_HERE"]
}
}
}
}Cline (VS Code Extension)
Add to Cline MCP settings:
{
"mcpServers": {
"lightfast": {
"command": "npx",
"args": ["-y", "@lightfastai/mcp"],
"env": {
"LIGHTFAST_API_KEY": "sk-lf-YOUR_KEY_HERE"
}
}
}
}Authentication
Get your API key from lightfast.ai:
- Sign in to your workspace
- Navigate to Settings → API Keys
- Create a new API key
API keys start with sk-lf- prefix.
Available Tools
The MCP server exposes these tools to Claude:
lightfast_search
Search your workspace memory using natural language.
Parameters:
query(required) - Natural language search querylimit(optional) - Number of results, 1-100 (default: 10)offset(optional) - Pagination offset (default: 0)mode(optional) - Search mode: "fast" | "balanced" | "thorough" (default: "balanced")includeContext(optional) - Include topic clusters and actors (default: true)includeHighlights(optional) - Include text highlights (default: true)filters(optional) - Filter results by:sourceTypes- e.g., ["github", "linear"]observationTypes- e.g., ["commit", "issue"]actorNames- e.g., ["@sarah"]dateRange- { start?, end? }
Response:
{
"data": [
{
"id": "obs_abc123",
"title": "Fix authentication bug",
"url": "https://github.com/...",
"snippet": "Fixed the session timeout issue...",
"score": 0.95,
"source": "github",
"type": "commit",
"occurredAt": "2024-11-15T10:30:00Z",
"highlights": {
"snippet": "Fixed the <mark>session timeout</mark> issue"
}
}
],
"meta": {
"total": 42,
"took": 125,
"mode": "balanced"
},
"requestId": "req_xyz"
}Search Modes:
fast- Vector search only (~50ms)balanced- Cohere reranking (~130ms)thorough- LLM-based scoring (~600ms)
lightfast_contents
Fetch full content for specific documents or observations by ID.
Parameters:
ids(required) - Array of document/observation IDs (1-50 IDs)
Response:
{
"items": [
{
"id": "obs_abc123",
"title": "Fix authentication bug",
"url": "https://github.com/...",
"snippet": "Short snippet...",
"content": "Full content here...",
"source": "github",
"type": "commit",
"occurredAt": "2024-11-15T10:30:00Z",
"metadata": {
"author": "sarah",
"sha": "abc123"
}
}
],
"missing": [],
"requestId": "req_xyz"
}lightfast_find_similar
Find content semantically similar to a given document or URL.
Parameters:
id(optional) - Document/observation ID to find similar items forurl(optional) - URL to find similar items for (alternative to id)limit(optional) - Maximum results, 1-50 (default: 10)threshold(optional) - Minimum similarity score 0-1 (default: 0.5)sameSourceOnly(optional) - Only return results from same source (default: false)excludeIds(optional) - Array of IDs to excludefilters(optional) - Same as search filters
Note: Either id or url must be provided.
Response:
{
"source": {
"id": "obs_abc123",
"title": "Original document",
"type": "commit",
"cluster": {
"topic": "Authentication",
"memberCount": 25
}
},
"similar": [
{
"id": "obs_def456",
"title": "Similar commit",
"url": "https://github.com/...",
"snippet": "Related changes...",
"score": 0.85,
"vectorSimilarity": 0.82,
"entityOverlap": 0.75,
"sameCluster": true,
"source": "github",
"type": "commit"
}
],
"meta": {
"total": 12,
"took": 95,
"inputEmbedding": {
"found": true,
"generated": false
}
},
"requestId": "req_xyz"
}lightfast_related
Find observations directly connected to a given observation via relationships.
Parameters:
id(required) - Observation ID to find related events for
Response:
{
"data": {
"source": {
"id": "obs_abc123",
"title": "Original observation",
"source": "github"
},
"related": [
{
"id": "obs_def456",
"title": "Related PR",
"source": "github",
"type": "pull_request",
"occurredAt": "2024-11-16T10:30:00Z",
"url": "https://github.com/...",
"relationshipType": "references",
"direction": "outgoing"
}
],
"bySource": {
"github": [...],
"linear": [...]
}
},
"meta": {
"total": 8,
"took": 45
},
"requestId": "req_xyz"
}lightfast_graph
Traverse the relationship graph from a starting observation.
Parameters:
id(required) - Observation ID to start graph traversal fromdepth(optional) - Traversal depth 1-3 (default: 2)types(optional) - Filter by relationship types, e.g., ["references", "mentioned_in"]
Response:
{
"data": {
"root": {
"id": "obs_abc123",
"title": "Starting node",
"source": "github",
"type": "commit"
},
"nodes": [
{
"id": "obs_def456",
"title": "Connected node",
"source": "github",
"type": "pull_request",
"occurredAt": "2024-11-16T10:30:00Z",
"url": "https://github.com/...",
"isRoot": false
}
],
"edges": [
{
"source": "obs_abc123",
"target": "obs_def456",
"type": "references",
"linkingKey": "PR-123",
"confidence": 0.95
}
]
},
"meta": {
"depth": 2,
"nodeCount": 15,
"edgeCount": 18,
"took": 78
},
"requestId": "req_xyz"
}Usage Examples
In Claude Desktop
Once configured, Claude can automatically use these tools:
User: "Search my workspace for information about authentication"
Claude: Uses lightfast_search tool
I found 15 results about authentication in your workspace. Here are the most relevant ones:
- Fix authentication bug in login flow (score: 0.95)
- Add OAuth2 configuration (score: 0.89) ...
User: "Show me code related to that first result"
Claude: Uses lightfast_contents and lightfast_related tools
Here's the full implementation and related discussions...
User: "Find similar issues"
Claude: Uses lightfast_find_similar tool
I found 8 similar authentication-related items...
In Claude Code
Claude Code automatically uses Lightfast to:
- Find relevant code when you ask questions
- Discover related files and documentation
- Search through past discussions and decisions
- Build context for code generation
- Explore relationships between commits, PRs, and issues
Programmatic Usage
You can also run the MCP server programmatically:
import { createServer } from "@lightfastai/mcp";
const server = await createServer({
apiKey: "sk-lf-...",
baseUrl: "https://lightfast.ai", // Optional
});
// Server is now running and accepting MCP requestsCLI Options
npx @lightfastai/mcp [options]
Options:
--api-key <key> Lightfast API key (or set LIGHTFAST_API_KEY env var)
--base-url <url> API base URL (default: https://lightfast.ai)
--help, -h Show this help message
--version, -v Show versionEnvironment Variables
LIGHTFAST_API_KEY=sk-lf-... # Your API key
LIGHTFAST_BASE_URL=https://lightfast.ai # Optional, custom API endpointTroubleshooting
Server not connecting
- Verify your API key is valid and starts with
sk-lf- - Check that the MCP server is in your config file
- Restart Claude Desktop after config changes
- Check Claude Desktop logs for errors
macOS logs: ~/Library/Logs/Claude/mcp-server-lightfast.log
Windows logs: %APPDATA%\Claude\logs\mcp-server-lightfast.log
API key errors
Error: Invalid API key format
Solution: Ensure your API key starts with sk-lf- prefix. Get a new key from lightfast.ai/settings/api-keys
Tool not found errors
Error: Claude says "lightfast_get_contents is not available"
Solution: The correct tool names are:
lightfast_searchlightfast_contents(notlightfast_get_contents)lightfast_find_similarlightfast_related(notlightfast_get_related)lightfast_graph(notlightfast_traverse_graph)
Make sure you're using the latest version: npx @lightfastai/mcp@latest
Rate limiting
Error: Rate limit exceeded
Solution: You're making too many requests. Wait a moment and try again. Consider upgrading your plan for higher rate limits.
Network errors
Error: Network error or timeout
Solution:
- Check your internet connection
- Verify
--base-urlis correct - Check if you're behind a proxy/firewall
- Increase timeout in your config (if supported by your MCP client)
MCP server not found
Error: Cannot find module '@lightfastai/mcp'
Solution:
- Use
npx -y @lightfastai/mcpto auto-install - Or install globally:
npm install -g @lightfastai/mcp - Restart your terminal/IDE after installation
Requirements
- Node.js >= 18
- Lightfast API key from lightfast.ai
- MCP-compatible client (Claude Desktop, Claude Code, Cursor, etc.)
Security
- API keys are never logged or stored by the MCP server
- All communication with Lightfast API uses HTTPS
- Configure API keys in environment variables for production use
- Never commit API keys to version control
Development
Building from source
git clone https://github.com/lightfastai/lightfast.git
cd lightfast/core/mcp
pnpm install
pnpm buildTesting locally
pnpm dev # Watch mode
# In another terminal
node dist/index.mjs --api-key sk-lf-...Local development with workspace protocol
The MCP package uses workspace:* protocol to depend on the local SDK during development:
# Build both packages
cd core/lightfast && pnpm build
cd ../mcp && pnpm build
# Use in Claude Desktop
{
"mcpServers": {
"lightfast": {
"command": "node",
"args": ["/path/to/lightfast/core/mcp/dist/index.mjs", "--api-key", "sk-lf-..."]
}
}
}MCP Protocol Version
This server implements MCP protocol version 2024-11-05 via @modelcontextprotocol/sdk@^1.0.0.
Links
- Website: lightfast.ai
- Documentation: lightfast.ai/docs/integrate/mcp
- GitHub: github.com/lightfastai/lightfast
- npm: npmjs.com/package/@lightfastai/mcp
- MCP Docs: modelcontextprotocol.io
- Issues: github.com/lightfastai/lightfast/issues
Related Packages
- lightfast - TypeScript SDK for the Lightfast API
License
Apache-2.0 © Lightfast
