Sentinel-MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Sentinel-MCPshow server diagnostics"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Sentinel-MCP
Sentinel-MCP is an extensible trading-intelligence platform whose first interface is a Model Context Protocol (MCP) server. Milestone 1 provides a robust server foundation: configuration, structured logging, automatic tool registration, error boundaries, testing, and a diagnostic tool.
Trading execution and market-data integrations are intentionally out of scope for this milestone.
Architecture
The application follows dependency-oriented boundaries:
corecreates the MCP server and cross-cutting concerns such as logging and errors.configvalidates the runtime environment before startup.toolscontains independently registerable MCP capabilities.servicescontains application logic that tools depend on.modelscontains stable, provider-agnostic data contracts.
Future provider adapters (TradingView, Dhan, NSE, news, and caching) can be added behind service interfaces without changing the MCP entry point.
Related MCP server: MCP Securities Analysis
Requirements
Node.js 22 or later (current LTS recommended)
pnpm 9 or later
Installation
git clone <your-repository-url>
cd sentinel-mcp
pnpm install
cp .env.example .envDevelopment
pnpm devBuild and run
pnpm build
pnpm startThe server communicates over standard input/output, as required by local MCP clients. Logs are written to stderr so they never corrupt the MCP protocol stream.
To use it with Claude Desktop after building, add a server entry that invokes the built file:
{
"mcpServers": {
"sentinel-mcp": {
"command": "node",
"args": ["/absolute/path/to/sentinel-mcp/dist/index.js"]
}
}
}Available tools
get_server_info
Returns structured runtime data including server name, version, status, ISO timestamp, uptime, Node.js version, and host platform. It is a safe connection and health diagnostic.
Quality commands
pnpm typecheck
pnpm lint
pnpm test
pnpm format:checkFolder structure
src/
config/ Environment validation and runtime settings
core/ Server composition, errors, logging
models/ Provider-agnostic application contracts
providers/ External-provider contracts and future adapters
schemas/ Shared validation schemas
services/ Reusable application services
tools/ Self-registering MCP tools and registry
cache/ Cache implementations and policies
types/ Shared TypeScript declarations
utils/ Small, framework-independent helpers
tests/ Vitest coverage for foundation components
docs/ Project documentation (reserved for design documents)
scripts/ Project automation (reserved for operational scripts)Configuration
Copy .env.example to .env. The defaults work for local development.
Variable | Default | Purpose |
|
| Server identity exposed to clients |
|
| Server version exposed to clients |
|
| Pino log level |
|
| MCP transport for this milestone |
Roadmap
Provider interfaces and resilient market-data adapters.
Shared cache, rate-limit, and retry policies.
Symbol lookup and market intelligence tools.
News enrichment and configurable alerting.
Optional authenticated provider integrations.
License
Choose and add an open-source license before public distribution.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AnahadhBirdh/sentinel-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server