A Spring Boot application demonstrating how to add MCP support to an existing REST service and expose customer functionality as MCP tools for AI clients such as Claude Desktop.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"customer-mcp-server": {
"command": "npx",
"args": [
"-y",
"Nina-Malangi/customer-mcp-server"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add customer-mcp-server npx -y Nina-Malangi/customer-mcp-server
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"customer-mcp-server": {
"command": "npx",
"args": [
"-y",
"Nina-Malangi/customer-mcp-server"
]
}
}
}
📋 Copy