Quotations MCP Server

Quotations MCP Server

A read-only MCP server that provides conversational querying of quotations data (counts, values, lookups) via tools like quotation_stats, search_quotations, and find_by_number.

Category
Visit Server

README

Quotations MCP Server

Standalone MCP server exposing the quotations-app backend as tools. It's a thin HTTP client over the quotations REST API — no database of its own — so it stays decoupled and can point at local dev or the live Render backend.

MCP agent ──MCP──► server.py ──HTTP──► quotations-app backend ──► MongoDB

Tools

Purpose is conversational intelligence — let an agent answer natural-language questions about quotations (counts, values, who-has-what, lookups) and take actions.

Conversational / query (read):

Tool Answers
quotation_stats() "how many are pending?", "total pipeline value?", "who has the most?" — counts by status + value by assignee
search_quotations(company?, status?, assignee?, number?, min_total?, max_total?) "show quotations assigned to Vijender over ₹10k" — filtered list + total value
find_by_number(quotation_number) resolves a human number like QT-2026-000005 to the full quotation
list_quotations() all quotations (compact)
get_quotation(quotation_id) one full quotation by internal id
health() backend reachability + count

READ-ONLY by design. This MCP only queries the customer's data and answers questions — it never writes (no create/reassign). Creating or modifying quotations is the customer app's job. The backend exposes only list + get, so filtering/aggregation is done here; prices/totals come only from the server-computed data — never invented.

Completion / status

A quotation is "completed" only if the customer's data stores that state. Today their backend hard-codes status:"draft" and never changes it, so quotation_stats / search_quotations(status=...) will only ever report draft. The moment their app writes a real status (e.g. completed/sent), these read tools surface it automatically — no change here.

Install

pip install -r requirements.txt   # mcp[cli], httpx

Run

# stdio (dev / desktop MCP clients)
python server.py

# HTTP endpoint (for the MCP agent to connect to)
MCP_TRANSPORT=http MCP_PORT=8200 python server.py
# → MCP endpoint at http://<host>:8200/mcp

# inspect/try tools
mcp dev server.py

Env

Var Default Purpose
QUOTATIONS_API_URL https://quotations-app.onrender.com backend base URL
QUOTATIONS_TIMEOUT 30 HTTP timeout (bump for Render cold start ~50s)
MCP_TRANSPORT stdio stdio or http
MCP_HOST / MCP_PORT 127.0.0.1 / 8200 bind for http transport

Notes

  • Deployed separately from the quotations backend and from Oscar.
  • The Oscar agent will later connect to this server (as an MCP client) via a new endpoint — this repo/folder does not depend on Oscar.

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
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
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
VeyraX MCP

VeyraX MCP

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

Official
Featured
Local
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
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
E2B

E2B

Using MCP to run code via e2b.

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
Qdrant Server

Qdrant Server

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

Official
Featured