Lighthouse MCP
A Model Context Protocol server that enables Claude to interact with and analyze your Lighthouse.one crypto portfolio data through secure authentication.
l3wi
README
Lighthouse MCP
A Model Context Protocol (MCP) server that enables Claude to interact with your Lighthouse.one portfolio data. This integration allows you to query and analyze your crypto portfolio directly through Claude.
Features
- Authentication: Securely authenticate with Lighthouse using transfer token URLs
- Portfolio Overview: Get detailed breakdowns of your portfolio including:
- Total portfolio value
- Asset type distribution
- Major holdings (≥ $1,000)
- List of connected wallets/accounts
- Asset Details: View detailed information about specific assets in your portfolio
- Transaction History: Access your transaction history across wallets
- Performance Analysis: Get insights on portfolio performance over time
You can ask Claude any form of natural language questions about performance, assets distribution etc and it will try its best to invoke the right tools and generate an asnwer for you.
Usage with Claude Desktop
NOTE: You must have at least Node LTS installed to use this MCP server. Try N-Install to quickly install Node on your system.
Add this to your claude_desktop_config.json
:
{
"mcpServers": {
"lighthouse": {
"command": "npx",
"args": ["-y", "mcp-lighthouse"]
}
}
}
Then restart the Claude app. If you don't get any errors on startup, then the MCP server is working.
Authentication Walkthrough
You'll be asked for the authentication URL. To get it, follow these steps:
- Go to the Settings page on Lighthouse.one
- Click on "Link Mobile Device" option
- Click on "Copy transfer link"
Note: The URL will be in the format of a Lighthouse transfer token URL which Claude can use to authenticate your session.
Available Commands
Once connected, you can use the following commands with Claude:
-
Authenticate
Use the authenticate command with a Lighthouse transfer token URL to log in.
-
List Portfolios
Use the listLighthousePortfolios command to see all your portfolios and their total values.
-
Get Portfolio Overview
Use the getLighthousePortfolio command to view your current portfolio status with detailed breakdowns.
-
Get Yield Data
Use the getLighthouseYieldData command to see yield information for your portfolio.
-
Get Performance Data
Use the getLighthousePerformanceData command to analyze your portfolio's performance over time.
Session Management
- The server maintains a session file (
.lighthouse_session
) to persist your authentication - You only need to authenticate once unless you explicitly log out or the session expires
- Session data is stored securely on your local machine
NOTE: You can always revoke the session key from the Lighthouse dashboard.
Security Note
This MCP server runs locally on your machine and communicates directly with Lighthouse's API. Your authentication credentials are never shared with Claude or any third-party services.
Running Locally
- Build the project:
npm install
npm run build
- Add the MCP server to Claude
Paste this JSON into the Develop settings of the Claude app. Make sure to point to the correct build output.
{
"mcpServers": {
"lighthouse": {
"command": "path/to/node/installation",
"args": ["path/to/this/folder/mcp-lighthouse/dist/index.js"]
}
}
}
Development
The project is built with TypeScript and uses the FastMCP framework for MCP server implementation. To modify or extend the functionality:
- Make changes to
index.ts
- Rebuild the project:
npm run build
- Restart the server
Requirements
- Node.js 16 or higher
- npm or yarn
- A Lighthouse.one account
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.