The MCP Azure TableStore server enables interaction with Azure Table Storage directly through Cline, allowing you to query and manage data in Azure Storage Tables with features like OData filter support, table schema retrieval, and table listing capabilities.
You can install the package globally via npm:
npm install -g dkmaker-mcp-server-tablestore
Or run it directly with npx:
npx dkmaker-mcp-server-tablestore
git clone https://github.com/dkmaker/mcp-azure-tablestorage.git
cd mcp-azure-tablestorage
npm install
npm run build
To use the Azure TableStore server with Cline, add it to your MCP settings configuration:
Locate your configuration file:
%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.jsonAdd the following configuration:
{
"mcpServers": {
"tablestore": {
"command": "node",
"args": ["C:/path/to/your/mcp-azure-tablestorage/build/index.js"],
"env": {
"AZURE_STORAGE_CONNECTION_STRING": "your_connection_string_here"
}
}
}
}
The server requires the following environment variable:
AZURE_STORAGE_CONNECTION_STRING: Your Azure Storage account connection stringTo query a table, you can use natural language in Cline:
Query the Users table where PartitionKey is 'ACTIVE'
This will invoke the query_table tool with:
{
"tableName": "Users",
"filter": "PartitionKey eq 'ACTIVE'",
"limit": 5
}
The query_table tool returns a limited subset of results (default: 5 items) to protect the LLM's context window. The response includes:
To understand a table's structure:
Show me the schema for the Orders table
This will use the get_table_schema tool with:
{
"tableName": "Orders"
}
To view all tables in your storage account:
List all tables in the storage account
This will use the list_tables tool with an empty JSON object:
{}
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "tablestore" '{"command":"node","args":["C:/path/to/your/mcp-azure-tablestorage/build/index.js"],"env":{"AZURE_STORAGE_CONNECTION_STRING":"your_connection_string_here"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:
{
"mcpServers": {
"tablestore": {
"command": "node",
"args": [
"C:/path/to/your/mcp-azure-tablestorage/build/index.js"
],
"env": {
"AZURE_STORAGE_CONNECTION_STRING": "your_connection_string_here"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.json2. Add this to your configuration file:
{
"mcpServers": {
"tablestore": {
"command": "node",
"args": [
"C:/path/to/your/mcp-azure-tablestorage/build/index.js"
],
"env": {
"AZURE_STORAGE_CONNECTION_STRING": "your_connection_string_here"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect