Skip to content
MCP-Bridge
Cloud Infrastructure

SearchServiceClient MCP Config

Client that can be used to manage and query indexes and documents, as well as manage other resources, on an Azure Search service.

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcp-bridge.pages.dev/config/azure-com-search-searchservice.json

Configuration JSON

Use curl https://mcp-bridge.pages.dev/config/azure-com-search-searchservice.json to fetch programmatically.

{
  "mcpServers": {
    "azure-com-search-searchservice": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-search-searchservice"],
      "env": {
      "SEARCHSERVICECLIENT_API_KEY": "your_searchserviceclient_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcp-bridge.pages.dev/config/azure-com-search-searchservice.json

Environment Variables

SEARCHSERVICECLIENT_API_KEY

Replace your_searchserviceclient_api_key with your actual searchserviceclient api key

Endpoints

GET/datasources

DataSources_List

POST/datasources

DataSources_Create

GET/datasources('{dataSourceName}')

DataSources_Get

PUT/datasources('{dataSourceName}')

DataSources_CreateOrUpdate

DELETE/datasources('{dataSourceName}')

DataSources_Delete

GET/indexers

Indexers_List

POST/indexers

Indexers_Create

GET/indexers('{indexerName}')

Indexers_Get

PUT/indexers('{indexerName}')

Indexers_CreateOrUpdate

DELETE/indexers('{indexerName}')

Indexers_Delete