{
"mcpServers": {
"quotation-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP compatible quote and pricing server
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 301 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Quotation Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A modular, clean-coded backend application that implements the Model Context Protocol (MCP) to simulate quotation generation, pricing, and discount suggestion for a B2B sales use case.
This project is ideal for developers exploring MCP tooling, handler-based architecture, or looking to integrate AI/LLM-driven tool invocation in an enterprise context.
GET /mcp/tools
Returns JSON describing all supported MCP tools:
[
{
"name": "createQuotation",
"description": "Creates a new proposal.",
"params": {
"customerName": "Customer name",
"currency": "Currency",
"items": "Product and quantity list"
}
}
]
git clone https://github.com/your-username/quotation-mcp-server.git
cd quotation-mcp-server
./mvnw clean install
Create PostgreSQL database:
createdb -U postgres quotationdb
Update src/main/resources/application.properties:
spring.datasource.url=jdbc:postgresql://localhost:5432/quotationdb
spring.datasource.username=postgres
spring.datasource.password=yourpassword
./mvnw spring-boot:run
POST http://localhost:8080/mcp
Content-Type: application/json
{
"jsonrpc": "2.0",
"method": "createQuotation",
"params": {
"customerName": "ABC Ltd.",
"currency": "TRY",
"items": [
{"product": "Premium Package", "quantity": 2},
{"product": "Extra Module", "quantity": 3}
]
},
"id": "1"
}
.
├── controller/ # MCPController, ToolDiscovery
├── handler/ # Clean handlers for each MCP tool
├── dto/ # All Request/Response models
├── model/ # JPA Entities
├── repository/ # Spring Data Repositories
├── service/ # Business logic layer
└── test/ # Unit tests per handler/service
MIT License
This project is a learning implementation of MCP and does not simulate real-time financial pricing logic or actual airline quotation systems.