Skip to content

Commit 8f74233

Browse files
committed
Add OpenSearch MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 2fd91f8 commit 8f74233

1 file changed

Lines changed: 93 additions & 0 deletions

File tree

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "org.opensearch-mcp-uvx",
4+
"name": "OpenSearch (uvx)",
5+
"alias": "opensearch",
6+
"description": "Connect to OpenSearch and Amazon OpenSearch Service clusters to search indices, retrieve mappings, inspect shards, and run cluster operations. Supports basic auth, AWS IAM, and dynamic per-call connection parameters.",
7+
"logo": "https://avatars.githubusercontent.com/u/80134844?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"search",
11+
"database"
12+
],
13+
"tags": [
14+
"opensearch",
15+
"search",
16+
"elasticsearch",
17+
"database",
18+
"aws",
19+
"indexing",
20+
"observability"
21+
],
22+
"transport": {
23+
"type": "stdio",
24+
"command": "uvx",
25+
"args": [
26+
"opensearch-mcp-server-py"
27+
],
28+
"env": {
29+
"OPENSEARCH_URL": "${input:OPENSEARCH_URL}",
30+
"OPENSEARCH_USERNAME": "${input:OPENSEARCH_USERNAME}",
31+
"OPENSEARCH_PASSWORD": "${input:OPENSEARCH_PASSWORD}"
32+
},
33+
"metadata": {
34+
"inputs": [
35+
{
36+
"id": "OPENSEARCH_URL",
37+
"label": "OpenSearch URL",
38+
"description": "Base URL of your OpenSearch cluster endpoint, e.g. https://localhost:9200 or your Amazon OpenSearch Service domain endpoint. Can be omitted if agents supply connection details per tool call.",
39+
"type": "url",
40+
"required": true,
41+
"placeholder": "https://localhost:9200",
42+
"obtain": {
43+
"url": "https://docs.opensearch.org/latest/ai-agent-integrations/mcp-server/index/",
44+
"instructions": "1. Use your self-managed OpenSearch endpoint (e.g. https://localhost:9200), or\n2. For Amazon OpenSearch Service, copy the domain endpoint from the AWS console (OpenSearch Service > Domains > your domain > Domain endpoint).",
45+
"button_label": "View Docs"
46+
}
47+
},
48+
{
49+
"id": "OPENSEARCH_USERNAME",
50+
"label": "OpenSearch Username",
51+
"description": "Username for HTTP basic authentication. Leave blank when using AWS IAM auth, mTLS, or connecting to a cluster with no auth.",
52+
"type": "text",
53+
"required": false,
54+
"secret": false,
55+
"placeholder": "admin"
56+
},
57+
{
58+
"id": "OPENSEARCH_PASSWORD",
59+
"label": "OpenSearch Password",
60+
"description": "Password for HTTP basic authentication. Leave blank when using AWS IAM auth, mTLS, or connecting to a cluster with no auth.",
61+
"type": "text",
62+
"required": false,
63+
"secret": true,
64+
"placeholder": "********"
65+
}
66+
]
67+
}
68+
},
69+
"auth": {
70+
"type": "optional_api_key",
71+
"instructions": "For basic auth, set OPENSEARCH_USERNAME and OPENSEARCH_PASSWORD. For Amazon OpenSearch Service, use AWS IAM credentials from your environment (AWS_REGION, AWS_PROFILE/AWS_IAM_ARN) instead. The server can also start with no credentials and accept connection details per tool call."
72+
},
73+
"contributor": {
74+
"name": "OpenSearch",
75+
"github": "opensearch-project",
76+
"url": "https://opensearch.org"
77+
},
78+
"links": {
79+
"repository": "https://github.com/opensearch-project/opensearch-mcp-server-py",
80+
"homepage": "https://opensearch.org",
81+
"documentation": "https://docs.opensearch.org/latest/ai-agent-integrations/mcp-server/index/"
82+
},
83+
"platforms": [
84+
"all"
85+
],
86+
"capabilities": {
87+
"tools": true,
88+
"resources": false,
89+
"prompts": false,
90+
"read_only_mode": false
91+
},
92+
"changelog_url": "https://github.com/opensearch-project/opensearch-mcp-server-py/releases"
93+
}

0 commit comments

Comments
 (0)