Sharesight MCP Server

Sharesight MCP Server

Connects AI assistants to the Sharesight portfolio tracking platform via the v3 API for managing investment portfolios and holdings. It enables natural language queries for performance reporting, dividend tracking, and custom investment management.

Category
Visit Server

README

Sharesight MCP Server

A Model Context Protocol (MCP) server that provides AI assistants with access to the Sharesight portfolio tracking platform via the v3 API.

Quick Start

Step 1: Get OAuth Credentials

You'll need a Client ID and Client Secret from Sharesight to use this server.

How to get credentials:

  • Contact Sharesight support at support@sharesight.com to request API access
  • Visit the Sharesight API documentation for more information
  • API access may require a specific Sharesight plan

Step 2: Run One-Time Authentication

npx github:Haizzz/sharesight-mcp auth

The CLI will:

  1. Prompt for your Client ID and Client Secret
  2. Display a URL to open in your browser
  3. Ask you to log in to Sharesight and authorize the app
  4. Prompt you to paste the authorization code
  5. Save tokens locally (they refresh automatically)

Step 3: Add MCP Server Configuration

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "sharesight": {
      "command": "npx",
      "args": ["-y", "github:Haizzz/sharesight-mcp", "serve"],
      "env": {
        "SHARESIGHT_CLIENT_ID": "your_client_id",
        "SHARESIGHT_CLIENT_SECRET": "your_client_secret"
      }
    }
  }
}

Restart Claude Desktop and you're ready to go!

Overview

This MCP server enables Claude and other AI assistants to interact with Sharesight accounts, allowing natural language queries and operations on investment portfolios, holdings, custom investments, and performance reports.

What is Sharesight?

Sharesight is a portfolio tracking platform that helps investors track their stocks, ETFs, mutual funds, and other investments across multiple markets. It provides performance reporting, dividend tracking, and tax reporting features.

What is MCP?

The Model Context Protocol is an open standard that enables AI assistants to securely connect to external data sources and tools.

Features

This server exposes 27 tools covering all Sharesight v3 API endpoints:

Portfolio Management

Tool Description
list_portfolios List all user portfolios with optional consolidated view
get_portfolio Get detailed portfolio information by ID
list_portfolio_holdings List all holdings within a specific portfolio
get_portfolio_user_setting Get user display preferences for a portfolio
update_portfolio_user_setting Update chart type, grouping, and other display settings

Holdings Management

Tool Description
list_holdings List all holdings across all portfolios
get_holding Get holding details with optional cost base and historical values
update_holding Update holding settings (DRP configuration)
delete_holding Remove a holding from a portfolio

Custom Investments

Tool Description
list_custom_investments List custom/unlisted investments
get_custom_investment Get custom investment details
create_custom_investment Create a new custom investment (property, bonds, etc.)
update_custom_investment Update custom investment properties
delete_custom_investment Remove a custom investment

Custom Investment Prices

Tool Description
list_custom_investment_prices Get price history for a custom investment
create_custom_investment_price Add a new price entry
update_custom_investment_price Modify an existing price entry
delete_custom_investment_price Remove a price entry

Coupon Rates (Fixed Interest)

Tool Description
list_coupon_rates List interest rates for fixed interest investments
create_coupon_rate Add a new coupon rate
update_coupon_rate Modify a coupon rate
delete_coupon_rate Remove a coupon rate

Performance Reports

Tool Description
get_performance_report Detailed performance breakdown with gains analysis
get_performance_index_chart Chart data for visualizing portfolio performance

Other

Tool Description
list_countries Get Sharesight-supported countries and their settings
show_coupon_code View applied promotional coupon code
apply_coupon_code Apply a promotional coupon code
delete_coupon_code Remove applied coupon code
revoke_api_access Disconnect API access (invalidates all tokens)

Install from Source

git clone https://github.com/Haizzz/sharesight-mcp.git
cd sharesight-mcp
npm install
npm run build

Then run auth and configure:

node dist/index.js auth
{
  "mcpServers": {
    "sharesight": {
      "command": "node",
      "args": ["/path/to/sharesight-mcp/dist/index.js", "serve"],
      "env": {
        "SHARESIGHT_CLIENT_ID": "your_client_id",
        "SHARESIGHT_CLIENT_SECRET": "your_client_secret"
      }
    }
  }
}

Token Storage

OAuth tokens are stored at:

  • Linux/macOS: ~/.sharesight-mcp/tokens.json
  • Windows: %USERPROFILE%\.sharesight-mcp\tokens.json

Tokens refresh automatically. To re-authorize, delete the tokens file and run sharesight-mcp auth again.

Error Handling

Common errors:

  • 401 - Invalid or expired access token
  • 403 - Token revoked or insufficient permissions
  • 404 - Resource not found
  • 422 - Validation error (check field values)

Development

npm run dev     # Watch mode
npm run build   # Build for production
npm start       # Run the server

License

MIT

Support

  • Sharesight Support: support@sharesight.com
  • API Documentation: https://api.sharesight.com/doc/api/v3
  • MCP Protocol: https://modelcontextprotocol.io/

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured