spring-ai-mcp-client

mcp client application that utilizes spring ai. it integrates with mcp protocol-supported servers to enable ai-powered chat interactions.

GitHub Stars

45

User Rating

Not Rated

Favorites

0

Views

18

Forks

2

Issues

0

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes

Installation

### 1. Clone Repository git clone cd spring-ai-mcp-client The MCP server information must be added to the mcp-servers.json file as follows.
json mcpservers.json
{
    "mcpServers":{
        "any-mcp-server":{
          "command":"node",
          "args":[
            "any-mcp-server/build/index.js"
          ]
        }
    }
}
 
The application.yml file should be configured as follows: ```yaml spring: ai:

Additional Resources