MCP server
by l3wi
Track your cryptocurrency portfolio with Lighthouse Portfolio Tracker. Securely view holdings, asset allocation, and cry
Connects to your Lighthouse.one cryptocurrency portfolio to fetch portfolio value, asset allocations, holdings data, and performance metrics for analysis through Claude.
Lighthouse Portfolio Tracker is a community-built MCP server published by l3wi that provides AI assistants with tools and capabilities via the Model Context Protocol. Track your cryptocurrency portfolio with Lighthouse Portfolio Tracker. Securely view holdings, asset allocation, and cry It is categorized under finance, analytics data. This server exposes 5 tools that AI clients can invoke during conversations and coding sessions.
You can install Lighthouse Portfolio Tracker in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Lighthouse Portfolio Tracker is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Lighthouse Portfolio Tracker is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
According to our notes, Lighthouse Portfolio Tracker benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We wired Lighthouse Portfolio Tracker into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Lighthouse Portfolio Tracker has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Lighthouse Portfolio Tracker is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We wired Lighthouse Portfolio Tracker into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Useful MCP listing: Lighthouse Portfolio Tracker is the kind of server we cite when onboarding engineers to host + tool permissions.
Lighthouse Portfolio Tracker is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Useful MCP listing: Lighthouse Portfolio Tracker is the kind of server we cite when onboarding engineers to host + tool permissions.
According to our notes, Lighthouse Portfolio Tracker benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
showing 1-10 of 65
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 buildPrerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.