Spring Boot MCP server enabling AI agents to inspect, insert, and analyze task data in a PostgreSQL database
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"taskmanager-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.
The Task Manager MCP Server is a Spring Boot application that exposes a Model Context Protocol (MCP) interface. It enables AI agents like Claude, GPT-4, etc., to interact with a shared PostgreSQL Task Management Database.
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.
Click any tool to inspect its schema.
task_schemaSchema definition of the Task entity
/mcp/schema/tasks
task_summaryAnalytics summary of tasks including status and priority distribution
/mcp/tasks/summary
helpHelp documentation for the MCP server
/mcp/help
bulk_task_generationInspect task schema, generate and insert 1000 diverse tasks with random statuses, titles, and due dates, then verify insertion using summary endpoint
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 data / productivity
Dynamic problem-solving through sequential thought chains
Zero-dependency, token-efficient database MCP server for Postgres, MySQL, SQL Server, MariaDB, SQLite.
Persistent memory using a knowledge graph
A Model Context Protocol (MCP) server that enables secure interaction with MySQL databases
MCP Security Weekly
Get CVE alerts and security updates for Taskmanager Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The Task Manager MCP Server is a Spring Boot application that exposes a Model Context Protocol (MCP) interface.
It enables AI agents like Claude, GPT-4, etc., to interact with a shared PostgreSQL Task Management Database.
Key features:
/mcp/schema/tasks)/mcp/tasks)/mcp/tasks/summary)/mcp/help)flowchart TD
A["AI Agent (Claude / GPT-4 / etc.)"] <--> B["MCP Server (Spring Boot)"]
B <--> C["PostgreSQL Database"]
A --> B
B --> C
B --> D["PostgreSQL Database"]
C --> D
spring.datasource.url=jdbc:postgresql://localhost:5432/taskdb
spring.datasource.username=task_user
spring.datasource.password=task_pass
spring.jpa.hibernate.ddl-auto=update
👉 http://localhost:8080/swagger-ui/index.html
{
"mcpServers": {
"task-manager": {
"command": "node",
"args": [
"C:\\Users\\your-username\\IdeaProjects\\mcp\\mcp\\mcp-proxy.js"
]
}
}
}
"/home/username/projects/mcp/mcp-proxy.js"
Please inspect the task schema at /mcp/schema/tasks.
Then generate and insert 1000 diverse tasks with random statuses, titles, and due dates using the /mcp/tasks endpoint.
Finally, verify insertion using /mcp/tasks/summary.
{
"totalTasks": 1000,
"statusDistribution": {
"TODO": 250,
"IN_PROGRESS": 200,
"DONE": 350,
"CANCELLED": 100,
"ON_HOLD": 100
},
"priorityDistribution": {
"LOW": 200,
"MEDIUM": 400,
"HIGH": 300,
"URGENT": 100
}
}
✅ Source code (Spring Boot + MCP server)
✅ PostgreSQL config
✅ README.md (this file)
✅ Example Claude prompts + results
✅ Swagger UI (interactive API docs)