mcp-server-opensearch MCP server
@gowtham3105
关于 mcp-server-opensearch MCP server
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mcp_server_opensearch": {
"command": "uv",
"args": [
"sync"
]
}
}
}工具
1Adds a new note to the server
概览
What is mcp-server-opensearch?
mcp-server-opensearch is an MCP (Model Context Protocol) server project that implements a simple note storage system. It provides resources, prompts, and tools for managing notes, and is designed to be run with uv/uvx and configured for use with Claude Desktop.
How to use mcp-server-opensearch?
Configure the MCP server in Claude Desktop’s configuration file (claude_desktop_config.json). For development use, set the command to uv with the project directory. For published use, set the command to uvx with the package name. The server can be built and published to PyPI using uv build and uv publish.
Key features of mcp-server-opensearch
- Custom
note://URI scheme for accessing individual notes - Each note resource has name, description, and text/plain mimetype
- A
summarize-notesprompt with optional “style” argument - An
add-notetool that takes “name” and “content” as required arguments - Server state updates and notifies clients of resource changes
- Debugging support via the MCP Inspector
Use cases of mcp-server-opensearch
- Storing and retrieving personal notes through an MCP client
- Summarizing all stored notes with configurable detail level
- Adding new notes programmatically via the
add-notetool - Testing and developing MCP server functionalities locally
FAQ from mcp-server-opensearch
How do I configure mcp-server-opensearch in Claude Desktop?
On macOS, edit ~/Library/Application Support/Claude/claude_desktop_config.json; on Windows, edit %APPDATA%/Claude/claude_desktop_config.json. Add an entry under mcpServers with the command and arguments (either for development or published versions).
How do I add a note using the server?
Call the add-note tool with two required string arguments: name and content. The tool updates the server state and notifies clients of resource changes.
How do I debug mcp-server-opensearch?
Use the MCP Inspector by running npx @modelcontextprotocol/inspector uv --directory <path> run mcp-server-opensearch and accessing the provided URL in your browser.
How do I build and publish the server?
Sync dependencies with uv sync, build distributions with uv build, and publish to PyPI with uv publish. Set PyPI credentials via --token or environment variables.
数据库 分类下的更多 MCP 服务器
PostgreSQL Model Context Protocol (PG-MCP) Server
stuzero
Sqlite
modelcontextprotocolModel Context Protocol Servers
MCP Server for Milvus
zilliztechModel Context Protocol Servers for Milvus
Elasticsearch/OpenSearch MCP Server
cr7258A Model Context Protocol (MCP) server implementation that provides Elasticsearch and OpenSearch interaction.
MCP Server for MySQL based on NodeJS
benborlaA Model Context Protocol server that provides read-only access to MySQL databases. This server enables LLMs to inspect database schemas and execute read-only queries.
评论