{
"mcpServers": {
"mcp-serverapplication": {
"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.
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 225 days ago.
Will it work with my client?
Transport: stdio, http. 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 Mcp ServerApplication and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This is a Spring Boot application that provides an IPL 2025 schedule service. It offers various endpoints to retrieve information about IPL matches, including filtering by team, date, venue, and match number. The schedule is preloaded with match data for the IPL 2025 season.
https://github.com/sourabh1120/McpServerRepository.git
Build the Project
mvn clean install
```API Endpoints
The service exposes the following endpoints:
1. Get All Matches
Retrieve all IPL 2025 matches.
GET /api/ipl/schedule/matches
2. Get Matches by Team
Retrieve all matches where a specific team is playing (either home or away).
GET /api/ipl/schedule/team/{teamName}
Example:
GET /api/ipl/schedule/team/Kolkata Knight Riders
3. Get Matches by Date
Retrieve all matches on a specific date.
GET /api/ipl/schedule/date/{date}
Example:
GET /api/ipl/schedule/date/2025-03-22
4. Get Matches by Date Range
Retrieve all matches between a specified date range.
GET /api/ipl/schedule/dates/{startDate}/{endDate}
Example:
GET /api/ipl/schedule/dates/2025-03-22/2025-04-01
5. Get Matches by Venue
Retrieve all matches held at a specific venue.
GET /api/ipl/schedule/venue/{venue}
Example:
GET /api/ipl/schedule/venue/Kolkata
6. Get Match by Match Number
Retrieve a specific match by its unique match number.
GET /api/ipl/schedule/match/{matchNumber}
Example:
GET /api/ipl/schedule/match/1
Configuration
You can customize the IPL schedule data or add more logic as per your requirements.
Modify the ScheduleService class to update match data or add new functionality.
The data is currently hardcoded in the loadIPLSchedule() method.
Commands I am using to connect with mcp server
===============================================
neosoft@neosoft-Latitude-5420:~$ mkdir -p ~/Library/Application\ Support/Claude/
neosoft@neosoft-Latitude-5420:~$ ls
neosoft@neosoft-Latitude-5420:~$ cd ~/Library/Application\ Support/Claude/
neosoft@neosoft-Latitude-5420:~/Library/Application Support/Claude$ touch ~/.config/Claude/claude_desktop_config.json
neosoft@neosoft-Latitude-5420:~/Library/Application Support/Claude$ nano ~/.config/Claude/claude_desktop_config.json
neosoft@neosoft-Latitude-5420:~/Library/Application Support/Claude$ nano ~/.config/Claude/claude_desktop_config.json
neosoft@neosoft-Latitude-5420:~/Library/Application Support/Claude$ cd ~/.config/Claude
neosoft@neosoft-Latitude-5420:~/.config/Claude$ ls
blob_storage Cookies Dictionaries IndexedDB sentry SharedStorage-wal 'Trust Tokens'
Cache Cookies-journal DIPS 'Local Storage' 'Service Worker' SingletonCookie 'Trust Tokens-journal'
claude_desktop_config.json Crashpad DIPS-wal logs 'Session Storage' SingletonLock WebStorage
'Code Cache' DawnGraphiteCache extensions-blocklist.json 'Network Persistent State' 'Shared Dictionary' SingletonSocket window-state.json
config.json DawnWebGPUCache GPUCache Preferences SharedStorage TransportSecurity
creating a json file give a path to spring boot application
n
... [View full README on GitHub](https://github.com/sourabh1120/Mcp-ServerApplication#readme)