Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"medicine-inventory-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Spring Boot-based Model Context Protocol (MCP) server for managing medicine inventory. This application provides a structured interface for AI assistants to interact with medicine inventory data through standardized MCP tools and prompts.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in health / data
Query and manage PostgreSQL databases directly from AI assistants
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
MCP Security Weekly
Get CVE alerts and security updates for Medicine Inventory 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 Spring Boot-based Model Context Protocol (MCP) server for managing medicine inventory. This application provides a structured interface for AI assistants to interact with medicine inventory data through standardized MCP tools and prompts.
This is a Spring Boot application that implements the Model Context Protocol (MCP) server specification, enabling AI assistants to:
src/
├── main/
│ ├── java/medicine/mcp/server/
│ │ ├── MedicineInventoryMcpServerApplication.java # Main Spring Boot application
│ │ ├── config/ # Configuration classes
│ │ ├── model/
│ │ │ └── Medicine.java # Medicine entity
│ │ ├── pormpt/ # Prompt definitions
│ │ │ └── MedicineInventoryPrompts.java
│ │ ├── service/
│ │ │ └── MedicineService.java # Business logic
│ │ ├── tools/
│ │ │ └── MedicineTools.java # MCP tool definitions
│ │ └── utils/
│ │ └── MedicineDataLoader.java # Data initialization
│ └── resources/
│ ├── application.yaml # Application configuration
│ ├── data/
│ │ └── medicines.json # Medicine inventory data
│ └── templates/
└── test/
└── java/medicine/mcp/server/
└── MedicineInventoryMcpServerApplicationTests.java
The application is configured via application.yaml:
spring:
application:
name: medicine-inventory-mcp-server
ai:
mcp:
server:
enabled: true
name: inventory-mcp-server
version: 0.0.1
type: SYNC
sse-endpoint: mcp
protocol: streamable
webmvc:
cors:
allowed-origins: "*"
server:
port: 9090
Key Configuration Points:
/mcp (SSE protocol)./mvnw clean package
This command will:
./mvnw spring-boot:run
Or run the packaged JAR:
java -jar target/medicine-inventory-mcp-server-0.0.1-SNAPSHOT.jar
The application will start on http://localhost:9090
http://localhost:9090/mcpThis endpoint provides the MCP server interface for AI assistants to interact with medicine inventory tools and prompts.
Located in src/main/resources/data/, this file contains the medicine inventory data that the application loads on startup. The data is managed by the MedicineDataLoader utility.
VS Code or IntelliJ IDEA