Status Invest - MCP Server
This project is part of the Model Context Protocol (MCP) ecosystem and provides tools to interact with external APIs and manage specific domain models. It is designed to demonstrate how to build an MCP server with external API integration and data validation.
| An integration that enables MCP tools to query stock market data, such as stock prices, indicators, and payment dates, using the Status Invest API. |
Table of Contents
- Features
- Architecture
- Installation
- MCP Server Configuration in VSCode
- MCP Server Output in VSCode
- Contribution
- License
Features
- get-acoes: Fetch basic stock information.
- get-indicadores: Fetch detailed stock indicator information.
- get-acoes-datas-pagamento: Fetch stock payment dates.
- Input validation using Zod.
- Integration with the Status Invest API using
fetch(infrastructure layer).
Architecture
The project follows a layered architecture inspired by Domain-Driven Design (DDD) patterns:
Domain (
src/domain): Defines interfaces and types that represent data structures (e.g.,StatusInvest).Infrastructure (
src/infrastructure): Implements external services, such asStatusInvestApiService, responsible for making HTTP calls to the Status Invest API.Application (
src/application): Contains business logic inStatusInvestService, which processes and formats data from the infrastructure.Interface (
src/interface): Includes controllers (StatusInvestToolsController) that register tools in the MCP server, define validation schemas, and return results.Entry Point (
src/main.ts): Initializes theMcpServer, configures the transport (StdioServerTransport), instantiates services and controllers, and starts listening on stdio.
The folder structure is as follows:
src/
├── domain/
│ └── models/ # Domain interfaces
├── infrastructure/
│ └── services/ # External API implementations (Status Invest)
├── application/
│ └── services/ # Business logic and data formatting
├── interface/
│ └── controllers/ # MCP tool registration and validation
└── main.ts # Server entry point
build/ # Compiled JavaScript code
.vscode/ # Contains the mcp.json file, MCP Server config
Installation
git clone git@github.com:newerton/mcp-status-invest.git
cd mcp-status-invest
npm install
npm run build
MCP Server Configuration in VSCode
- Press
Ctrl+Shift+Pand select “MCP: List Servers” - Select “stocks” and then “Start Server”
MCP Server Output in VSCode
- Press
Ctrl+Shift+Pand select “MCP: List Servers” - Select “stocks” and then “Show Output”
Contribution
Pull requests are welcome! Feel free to open issues and discuss improvements.
License
This project is licensed under the MIT license - see the LICENSE file for details.
Status Invest Stock Market Data Server
Project Details
- newerton/mcp-status-invest
- MIT License
- Last Updated: 4/27/2025
Recomended MCP Servers
An MCP server for the NEAR blockchain
A Model Context Protocol (MCP) server for Kubernetes that enables AI assistants like Claude, Cursor, and others to...
alpaca-mcp using stdio/stdout
A Model Context Protocol (MCP) server for email integration via Nylas. Enables AI assistants to effortlessly batch-triage, organize,...
mastodon modelcontextprotocol server
MCP (Model Context Protocol) server for uploading media to Cloudinary using Claude Desktop
Lucidia-Voice-Gateway: A dynamic audio processing server leveraging Microsofts inbuilt architechture to power adaptive, real-time text-to-speech and voice interaction...
A comprehensive MCP (Model Context Protocol) server for file system operations, providing Claude and other AI assistants with...
Youtube mcp server
Autonomous coding agent right in your IDE, capable of creating/editing files, executing commands, using the browser, and more...





