
opensearch
一个为 OpenSearch 集群提供只读访问的 Model Context Protocol 服务器。
Repository Info
About This Server
一个为 OpenSearch 集群提供只读访问的 Model Context Protocol 服务器。
Model Context Protocol (MCP) - This server can be integrated with AI applications to provide additional context and capabilities, enabling enhanced AI interactions and functionality.
Documentation
OpenSearch
A Model Context Protocol server that provides read-only access to OpenSearch clusters. This server enables LLMs to inspect indices and execute read-only queries.
To learn more about MCP Servers see:
- What is MCP
- Model Context Protocol
This OpenSearch MCP Server was designed for seamless integration with skeet.build
Components
Tools
- search
- Execute read-only search queries against the connected OpenSearch cluster
- Input:
query(string): The OpenSearch query to execute - Input:
index(string): The index to search (optional) - All queries are executed with read-only permissions
Resources
The server provides schema information for each index in the OpenSearch cluster:
- Index Mappings (
opensearch://<host>/<index>/mapping)- JSON schema information for each index
- Includes field names and data types
- Automatically discovered from cluster metadata
Usage with Claude Desktop
To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json:
NPX
{
"mcpServers": {
"opensearch": {
"command": "npx",
"args": [
"-y",
"@skeetbuild/opensearch",
"https://username:password@localhost:9200"
]
}
}
}
Usage with Cursor
To use this server with Cursor, add the following configuration to your global (~/.cursor/mcp.json) or project-specific (.cursor/mcp.json) configuration file:
Global Configuration
{
"mcpServers": {
"opensearch": {
"command": "npx",
"args": [
"-y",
"@skeetbuild/opensearch",
"https://username:password@localhost:9200"
]
}
}
}
For more details on setting up MCP with Cursor, see the Cursor MCP documentation.
Usage with GitHub Copilot in VS Code
To use this server with GitHub Copilot in VS Code, add a new MCP server using the VS Code command palette:
- Press
Cmd+Shift+Pand search for "Add MCP Server" - Select "SSE MCP Server" and use the following configuration:
{
"mcp": {
"servers": {
"opensearch": {
"command": "npx",
"args": [
"-y",
"@skeetbuild/opensearch",
"https://username:password@localhost:9200"
]
}
}
}
}
For detailed setup instructions, see the GitHub Copilot MCP documentation.
Usage with Windsurf
To use this server with Windsurf, add the following configuration to your Windsurf MCP settings:
{
"mcpServers": {
"opensearch": {
"command": "npx",
"args": [
"-y",
"@skeetbuild/opensearch",
"https://username:password@localhost:9200"
]
}
}
}
For more information on configuring MCP with Windsurf, refer to the Windsurf MCP documentation.
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Quick Start
Clone the repository
git clone https://github.com/skeet-build/opensearchInstall dependencies
cd opensearch
npm installFollow the documentation
Check the repository's README.md file for specific installation and usage instructions.
Repository Details
Recommended MCP Servers
Discord MCP
Enable AI assistants to seamlessly interact with Discord servers, channels, and messages.
Knit MCP
Connect AI agents to 200+ SaaS applications and automate workflows.
Apify MCP Server
Deploy and interact with Apify actors for web scraping and data extraction.
BrowserStack MCP
BrowserStack MCP Server for automated testing across multiple browsers.
Zapier MCP
A Zapier server that provides automation capabilities for various apps.