drio
Open app

MCP servers.

Source

Catalog onlyCatalog onlySTDIO

Overview

Tablestore MCP Server is an implementation of the Model Context Protocol (MCP), which facilitates seamless integration between large language model (LLM) applications and external data sources and tools.

To use the Tablestore MCP Server, developers can implement it in their applications using the provided language-specific implementations, such as Python or Java.

  • Open protocol for LLM applications - Supports integration with various external data sources - Standardized solution for connecting LLMs with necessary contextual information
  1. Developing AI-driven integrated development environments (IDEs)
  2. Enhancing chat interface functionalities
  3. Creating customized AI workflows

Add to your AI client

Use these steps to connect MCP servers. in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "alibabacloud-tablestore-mcp-server-aliyun": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-alibabacloud-tablestore-mcp-server-aliyun"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "alibabacloud-tablestore-mcp-server-aliyun": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-alibabacloud-tablestore-mcp-server-aliyun"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "alibabacloud-tablestore-mcp-server-aliyun": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-alibabacloud-tablestore-mcp-server-aliyun"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "alibabacloud-tablestore-mcp-server-aliyun": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-alibabacloud-tablestore-mcp-server-aliyun"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "alibabacloud-tablestore-mcp-server-aliyun": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-alibabacloud-tablestore-mcp-server-aliyun"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "alibabacloud-tablestore-mcp-server-aliyun": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-alibabacloud-tablestore-mcp-server-aliyun"
      ]
    }
  }
}

FAQ

What is the Model Context Protocol (MCP)?

MCP is an open protocol that allows LLM applications to integrate seamlessly with external data sources and tools.

Is Tablestore MCP Server free to use?

Yes! Tablestore MCP Server is open-source and available under the Apache-2.0 license.

Which programming languages are supported?

Currently, implementations are available in Python and Java.