
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
mcp-lighthouse
Advanced tools
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.
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.
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.
You'll be asked for the authentication URL. To get it, follow these steps:


Note: The URL will be in the format of a Lighthouse transfer token URL which Claude can use to authenticate your session.
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.
.lighthouse_session) to persist your authenticationNOTE: You can always revoke the session key from the Lighthouse dashboard.
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.
npm install
npm run build
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"]
}
}
}
The project is built with TypeScript and uses the FastMCP framework for MCP server implementation. To modify or extend the functionality:
index.tsnpm run buildFAQs
An MCP server for Lighthouse.one portfolio tracker.
We found that mcp-lighthouse demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.