Skip to main content
Glama
VivekKumarNeu

mcp-lucene-server

McpUpsertResponse.java945 B
package com.example.mcpluceneserver.model; import java.util.List; import java.util.Objects; public class McpUpsertResponse { private List<String> ids; // IDs of successfully upserted documents public McpUpsertResponse() { } public McpUpsertResponse(List<String> ids) { this.ids = ids; } public List<String> getIds() { return ids; } public void setIds(List<String> ids) { this.ids = ids; } @Override public String toString() { return "McpUpsertResponse{" + "ids=" + ids + '}'; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; McpUpsertResponse that = (McpUpsertResponse) o; return Objects.equals(ids, that.ids); } @Override public int hashCode() { return Objects.hash(ids); } }

Latest Blog Posts

MCP directory API

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