adityamparikh commented on code in PR #1:
URL: https://github.com/apache/solr-mcp/pull/1#discussion_r2446295082


##########
README.md:
##########
@@ -0,0 +1,461 @@
+# Solr MCP Server
+
+A Spring AI Model Context Protocol (MCP) server that provides tools for 
interacting with Apache Solr. This server
+enables AI assistants like Claude to search, index, and manage Solr 
collections through the MCP protocol.
+
+## Overview
+
+This project provides a set of tools that allow AI assistants to interact with 
Apache Solr, a powerful open-source
+search platform. By implementing the Spring AI MCP protocol, these tools can 
be used by any MCP-compatible client,
+including Claude Desktop. The project uses SolrJ, the official Java client for 
Solr, to communicate with Solr instances.
+
+The server provides the following capabilities:
+
+- Search Solr collections with advanced query options
+- Index documents into Solr collections
+- Manage and monitor Solr collections
+- Retrieve and analyze Solr schema information
+
+### Transport Profiles
+
+The server supports two transport modes:
+
+- **STDIO (Standard Input/Output)** - Recommended for local development and 
production use with Claude Desktop. This is
+  the default and most secure option for local deployments.
+- **HTTP (Streamable HTTP)** - For testing with MCP Inspector and remote 
deployments. ⚠️ **Note:** HTTP
+  mode is inherently insecure without additional security measures (see 
Security Considerations below).
+
+## Prerequisites
+
+- Java 25 or higher
+- Docker and Docker Compose (for running Solr)

Review Comment:
   Docker is needed for playing with it as well as testcontainers tests. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to