- Home
- MCP servers
- Market Expert
Market Expert
- javascript
0
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"dolphinworld-market-expert-mcp": {
"command": "node",
"args": [
"/Users/jacksu/market-expert-mcp/src/index.js"
],
"env": {
"FINNHUB_API_KEY": "YOUR_FINNHUB_API_KEY"
}
}
}
}You deploy this Market Expert MCP Server to access high-fidelity market research functionality that combines institutional-grade data from Finnhub with an automated Equity Researcher persona. This MCP server lets you generate professional market reports by invoking it from your MCP client, streamlining research workflows within your AI-enabled workspace.
How to use
You use the Market Expert MCP Server by invoking it through your MCP client with a command aligned to your setup. Once registered, you can request a market report for a specific ticker, and the server will fetch data from Finnhub, apply its Equity Researcher persona, and save the resulting report to the designated output location.
How to install
Prerequisites: you need Node.js and npm installed on your system.
git clone https://github.com/YOUR_USERNAME/market-expert-mcp.git
cd market-expert-mcp
npm install
Additional sections
Configure secrets to enable Finnhub access. Create a copy of the example environment file and insert your Finnhub API key.
cp .env.example .env
# Open .env and add your FINNHUB_API_KEY
Register the MCP server so your client can locate and start it. Provide the command and arguments needed to launch the local server process.
# Example entry to add to your claude_desktop_config.json
"mcpServers": {
"market-expert": {
"command": "node",
"args": ["/Users/jacksu/market-expert-mcp/src/index.js"]
}
}
Install the market expert skill into your project to enable seamless integration with your Claude-based workflow.
# Copy the skill into your project
cp .claude/skills/market-expert <your-project>/.claude/skills/