This MCP server enables Claude to interact with your Lighthouse.one portfolio data, allowing you to query and analyze your crypto portfolio through natural language questions about performance, assets, and more.
You must have at least Node LTS installed to use this MCP server. If you need to install Node, N-Install is recommended for quick installation.
Add this to your claude_desktop_config.json
:
{
"mcpServers": {
"lighthouse": {
"command": "npx",
"args": ["-y", "mcp-lighthouse"]
}
}
}
Restart the Claude app. If no errors appear on startup, the MCP server is working properly.
When first using the MCP server, you'll need to authenticate. Follow these steps:
The URL will be in the format of a Lighthouse transfer token URL which Claude will use to authenticate your session.
Once connected, you can use these commands with Claude:
Use the authenticate command with a Lighthouse transfer token URL to log in.
Use the listLighthousePortfolios command to see all your portfolios and their total values.
Use the getLighthousePortfolio command to view your current portfolio status with detailed breakdowns.
Use the getLighthouseYieldData command to see yield information for your portfolio.
Use the getLighthousePerformanceData command to analyze your portfolio's performance over time.
.lighthouse_session
) to persist your authenticationYou can always revoke the session key from the Lighthouse dashboard if needed.
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.
If you prefer to run without npx, you can:
npm install
npm run build
{
"mcpServers": {
"lighthouse": {
"command": "path/to/node/installation",
"args": ["path/to/this/folder/mcp-lighthouse/dist/index.js"]
}
}
}
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "lighthouse" '{"command":"npx","args":["-y","mcp-lighthouse"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"lighthouse": {
"command": "npx",
"args": [
"-y",
"mcp-lighthouse"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"lighthouse": {
"command": "npx",
"args": [
"-y",
"mcp-lighthouse"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect