Submit

#nse

51 results found

C

cosense-mcp-server MCP Server

Mirror of

G

Gatherings MCP Server

The Gatherings MCP Server provides an API that allows AI assistants to interact with the Gatherings application through the Machine Conversation Protocol. This enables AI systems to help users manage shared expenses for social events, outings, or any gathering where costs are split among participants.

G

gatherings MCP Server

This is a TypeScript-based MCP server, which wraps around a python script. together it helps track expenses and payments for social events, making it easy to calculate reimbursements and settle balances between friends.

N

NEO - 0.0.5913311

AI Agent for @NSEChainBridge

C

CarsXE

Decode VINs, look up specs, history, recalls, market value, and OBD codes. Recognize license plates and VINs from images. Access comprehensive vehicle data by year, make, and model to power automotive workflows.

A

Alibabacloud Opensearch Mcp Server

This MCP server equips AI Agents with tools to interact with OpenSearch through a standardized and extensible interface. See our product document for more information.

U

usensedata-mcp-server-query-china-company

羽山数据API服务现已全面兼容MCP协议,打造数据服务MCP Server。usensedata-mcp-server-query-china-company项目为企业类数据查询服务server,用户可通过简单配置快速通过LLM使用羽山数据企业类数据服务。依赖MCP Typescript SDK,可在支持MCP协议的智能体助手中快速接入。

D

Dhan Broker MCP Trades

Dhan Trading MCP Server A Model Context Protocol (MCP) server integration for the Dhan Trading API, allowing Claude to access your trading account information. Overview This project creates an MCP server that connects the Dhan Trading API with Claude AI, enabling Claude to: Check your account balance View your holdings and positions Get live profit and loss information Fetch latest trading prices Place and manage orders Installation Prerequisites Python 3.8+ installed Claude Desktop application Dhan Trading account with API credentials

O

Oauth2 Authorization Server

OAuth2 Authorization Server with Spring Boot 3 and Java 24

W

Well

Query bank transactions and invoices, manage financial contacts directly from your LLM. Well transforms your AI assistant into a comprehensive financial insight and automation system, an AI-powered finance agent that connects multiple banking APIs, categorizes expenses, and generates real-time financial insights. Perfect for SMB founders and finance teams who want to eliminate manual bookkeeping & customize FP&A and investor reporting. Access live banking data, automate invoice workflows, and get intelligent financial analysis without switching between multiple tools.

L

Linea MCP Server

A Model Context Protocol (MCP) server that provides on-chain tools for AI applications to interact with the Linea blockchain.

S

Sex Education Mcp Server

Obtaining information about sex education

A

Agent Runway

MCP server for Canadian real estate agents. 16 read-only tools covering transactions, pipeline deals, CRM clients, expenses, mileage tracking, income forecasts, Runway Score (business health grade), and Canadian income tax estimates for all 13 provinces/territories. Streamable HTTP transport with Bearer token auth.

T

Typesense MCP Server

Mirror of

M

Mintline

Connect AI assistants like Claude to manage your receipts and bank transactions using natural language. Automatically match receipts to transactions, analyze spending patterns, and review financial data conversationally.

M

mcp-server-opensearch: An OpenSearch MCP Server

Mirror of

V

Visual Studio Mcp Server

MCP Server for Visual Studio bridges your IDE with AI coding assistants like Claude Code, Cursor, Windsurf, and Cline. Unlike file-based tools, this extension provides what AI agents CAN'T do alone: • IntelliSense & semantic code understanding (powered by Roslyn) • Symbol search - definitions, usages, inheritance hierarchies • Solution/project navigation and document outlines • Build execution with clean, structured error output • Async test execution with progress tracking • Solution-wide refactoring (rename symbols across all files) 20 tools designed for AI consumption with token-efficient output. Windows only. Supports VS 2022 (17.13+) and VS 2026.

T

Tapetide Stock Research Mcp Server

Tapetide Stock Research MCP server lets you search, screen, and analyze all Indian stocks listed on NSE and BSE with 26 tools covering real-time quotes, quarterly and annual financials, 20+ technical indicators, analyst ratings and forecasts, FII/DII institutional flows, a stock screener with 100+ filters and 47 preset strategies, and market insights including bulk deals, F&O bans, IPOs, and index heatmaps.

U

Unofficial Ensembl MCP Server

A comprehensive Model Context Protocol (MCP) server that provides access to the Ensembl REST API for genomic data, comparative genomics, and biological annotations.

S

Splid MCP

# Splid MCP Server A Model Context Protocol (MCP) server that exposes Splid (splid.app) via tools, powered by the reverse‑engineered `splid-js` client. - Language/Runtime: Node.js (ESM) + TypeScript - Transport: Streamable HTTP (and stdio for local inspector) - License: MIT ## Quick start 1) Install ```bash npm install ``` 2) Configure env Create a `.env` in project root: ``` CODE=YOUR_SPLID_INVITE_CODE PORT=8000 ``` 3) Build and run ```bash npm run build npm run dev ``` 4) Inspect locally ```bash npm run inspect ``` Then connect to `http://localhost:8000/mcp` using "Streamable HTTP". ## Tools All tools support an optional group selector to override the default from `CODE`: - `groupId?: string` - `groupCode?: string` (invite code) - `groupName?: string` (reserved; not yet supported) If none provided, the server uses the default group from `CODE`. ### health - Purpose: connectivity check - Output: `{ ok: true }` ### whoami - Purpose: show the currently selected group and its members - Input: none - Output: JSON containing group info and members ### createExpense - Purpose: create a new expense entry - Input: - `title: string` - `amount: number > 0` - `currencyCode?: string` (defaults to the group default when omitted) - `payers: { userId?: string; name?: string; amount: number > 0 }[]` (at least 1) - `profiteers: { userId?: string; name?: string; share: number in (0,1] }[]` (at least 1) - Optional group selector fields - Rules: - Names are case‑insensitive and resolved to member GlobalId; unknown names return a clear error. - The sum of all `share` values must equal 1 (±1e‑6). - Example (names): ```json { "title": "Dinner", "amount": 12.5, "payers": [{ "name": "Alice", "amount": 12.5 }], "profiteers": [{ "name": "Bob", "share": 0.6 }, { "name": "Alice", "share": 0.4 }] } ``` - Example (userIds): ```json { "title": "Dinner", "amount": 12.5, "payers": [{ "userId": "<GlobalId>", "amount": 12.5 }], "profiteers": [{ "userId": "<GlobalId>", "share": 1 }] } ``` ### listEntries - Purpose: list recent entries in a group - Input: - `limit?: number` (1..100, default 20) - Optional group selector fields - Output: array of entries ### getGroupSummary - Purpose: show balances/summary for a group - Input: - Optional group selector fields - Output: summary object (balances computed via Splid) ### Streamable HTTP - URL: `http://localhost:8000/mcp` - No auth headers required; use MCP Inspector to test. ## Troubleshooting - "Bad Request: Server not initialized": refresh and reconnect; first POST must be `initialize`. - 400 with share errors: ensure shares are in (0,1] and sum to 1. - Unknown name: check exact member names in `whoami` output. ## Configuration - Env variables: - `CODE`: Splid invite/join code for the default group - `PORT` (optional): default 8000 ## Acknowledgements - Splid JS client: https://github.com/LinusBolls/splid-js - MCP Server template / docs: https://github.com/InteractionCo/mcp-server-template ## License MIT

O

Open-Meteo MCP Server

Open-Meteo MCP Server - A comprehensive Model Context Protocol server that provides AI models with complete access to Open-Meteo's free weather API. Get real-time weather forecasts, historical climate data, air quality information, marine conditions, and seasonal projections through a simple MCP interface. Supports all major weather models (ECMWF, GFS, ICON, JMA, Météo-France) with data covering temperature, precipitation, wind, humidity, UV index, and specialized datasets for research and professional applications.

M

Mcp Rubber Duck

Query multiple LLMs in parallel from AI coding tools. Ask a question to OpenAI, Gemini, Groq, or any OpenAI-compatible API — and CLI agents like Claude Code, Codex, and Gemini CLI — then compare answers, run consensus votes, structured debates, and judge evaluations. Rubber duck debugging, but the ducks talk back.

K

Kelnix Receipt Mcp Api

Description: Turn any receipt into structured, accounting-ready JSON or clean Markdown with one API call. AI-powered vision extracts merchant, date, line items, tax breakdown, totals, currency, and confidence scores — then suggests the right GL account for instant bookkeeping. 7 tools for the full receipt-to-journal-entry pipeline. Built for expense automation agents. 50 free credits on signup, no credit card required.

M

Meridian Edge — Prediction Market Consensus Data

Query real-time prediction market consensus data from Claude and AI agents. Aggregated probabilities from multiple regulated prediction markets, updated every 10 minutes. 5 tools: get_consensus, get_opportunities, get_signals, get_markets, get_settlements. Coverage: NBA, NFL, MLB, NHL, MLS, US politics, economics. Free tier: 100 API calls/day.

C

Carapi.dev

# CarAPI MCP Server Remote MCP server that gives AI agents a single interface to **CarAPI**'s vehicle-data endpoints — VIN decoding, license-plate lookup, stolen-vehicle checks, technical-inspection history, odometer history, market valuation, listings search, and more. Hosted at **https://mcp.carapi.dev/mcp** (Streamable HTTP). Stateless, horizontally scalable, no session storage.

E

Expensebot

ExpenseBot is the first expense management tool on the official MCP Registry. Two MCP servers: @expensebot/mcp-server-auth (authenticated) — 13 tools that work with your real ExpenseBot data: - Search expenses by category, merchant, date, amount - Submit photo/PDF receipts via base64 - Scan Gmail for receipts on demand - Create, list, share, download expense reports - Run deep analytics ("compare Q1 vs Q2 spending") - Add cash expenses without a receipt - Check tax deductibility - Check compliance issues @expensebot/mcp-server (read-only) — answers questions about ExpenseBot for pre-sales/help. Auth: Personal Access Tokens generated from Settings → AI Assistant Tokens. 30-day expiry, revokable, scoped to your account only. CASA Tier 2 certified. Free with any ExpenseBot account (60-day free trial).

© 2025 MCP.so. All rights reserved.

Build with ShipAny.