sharelist-mcp
v2.0.0
Published
Bridge between Claude Desktop and Share List MCP HTTP server
Maintainers
Readme
sharelist-mcp
Bridge between Claude Desktop and Share List MCP HTTP server.
Installation
You don't need to install this package manually. Claude Desktop will download it automatically when you add the configuration.
Configuration
Add this to your Claude Desktop config file:
Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"sharelist": {
"command": "npx",
"args": ["sharelist-mcp"],
"env": {
"MCP_SERVER_URL": "https://sharelist.ai/api/mcp/v1",
"MCP_TOKEN": "YOUR_TOKEN_HERE"
}
}
}
}Getting a Token
- Visit https://sharelist.ai/settings/mcp
- Generate a new token
- Replace
YOUR_TOKEN_HEREwith your token
Available Tools (v2.0.0)
All tools are namespaced with sharelist_ to prevent conflicts with other MCP servers:
sharelist_get_lists- Get all your shared listssharelist_read_data- Read data from a specific list with schema infosharelist_update_cell- Update a specific cell valuesharelist_update_batch- Update multiple cells efficientlysharelist_search- Search for records in a listsharelist_analyze_column- Analyze column data patternssharelist_read_filtered- Read filtered data with pagination
Version 2.0.0 Breaking Changes
All tool names have been namespaced. Claude will automatically discover the new names, but if you have any custom prompts referencing the old tool names, you'll need to update them.
Using with Claude Desktop
Once configured, you can ask Claude natural questions like:
- "What lists do I have?"
- "Show me the data in my customer list"
- "Update the phone number for John Doe"
- "Search for all orders from last month"
Claude will automatically use the appropriate ShareList tools.
Troubleshooting
Check Claude Desktop logs:
- macOS:
~/Library/Logs/Claude/ - Windows:
%APPDATA%\Claude\logs\
- macOS:
Bridge logs are written to stderr and will appear in Claude's logs
Common issues:
- Ensure the path to index.js is absolute
- Check that the MCP server URL is accessible
- Verify the token is valid
