We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/VivekKumarNeu/MCP-Lucene-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
LuceneProperties.java•588 B
package com.example.mcpluceneserver.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
@Configuration
@ConfigurationProperties(prefix = "lucene.index")
public class LuceneProperties {
/**
* The path where the Lucene index files will be stored.
*/
private String path = "./lucene-index"; // Default value
public LuceneProperties() {
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
}