- Home
- MCP servers
- Asktable-MCP-Server
Asktable-MCP-Server
- typescript
0
GitHub Stars
typescript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Asktable MCP Server lets you connect your AskTable data sources to an MCP client using either SSE (server-sent events) or Stdio protocols. This enables real-time data access and actions between AskTable SaaS or local deployments and your MCP tooling.
How to use
Choose your preferred connection method and configure your MCP client to talk to AskTable. You can use a remote SaaS SSE endpoint for live data, or run a local MCP server and connect via Stdio or SSE. Restart your MCP client after changes, then you can start querying data sources and performing actions through the MCP channel.
How to install
Prerequisites: you need a runtime that can run the chosen MCP connection method. For SaaS SSE, no local installation is required. For local deployments using Stdio, install the local MCP client package first.
# Local Stdio deployment requires the MCP client package. Install with uvx:
uvx asktable-mcp-server@latest
Configuration and usage notes
Configure your MCP client to connect to AskTable using one of the supported modes. The following examples show how to set up the client configuration for each mode.
SaaS SSE mode configuration (recommended for new users)
Use this mode when you are connected to AskTable SaaS. No local software installation is needed.
{
"mcpServers": {
"asktable": {
"type": "http",
"url": "https://mcp.asktable.com/sse/?api_key=ASKER_8H8DRJCH6LT8HCJPXOH4&datasource_id=ds_6iewvP4cpSyhO76P2Tv8MW",
"headers": {},
"timeout": 300,
"sse_read_timeout": 300
}
}
}
SaaS Stdio mode configuration
If you prefer Stdio mode with SaaS, install locally and configure the client to run the MCP server as a child process.
{
"mcpServers": {
"asktable": {
"command": "uvx",
"args": ["asktable-mcp-server@latest"],
"env": {
"API_KEY": "ASKER_8H8DRJCH6LT8HCJPXOH4",
"DATASOURCE_ID": "ds_6iewvP4cpSyhO76P2Tv8MW"
}
}
}
}
本地部署 SSE 模式配置
在本地部署版本中,默认的 MCP SSE 服务地址是本地主机的映射地址。配置客户端以使用 SSE 流式连接到本地 MCP 服务。
{
"mcpServers": {
"asktable": {
"type": "http",
"url": "http://your_local_host:port/mcp/sse/?api_key=your_api_key&datasource_id=your_datasource_id",
"headers": {},
"timeout": 300,
"sse_read_timeout": 300
}
}
}
本地部署 Stdio 模式配置
若在本地部署中使用 Stdio 模式,请安装本地 MCP 客户端并使用 base_url 指定本地服务地址。
{
"mcpServers": {
"asktable": {
"command": "uvx",
"args": ["asktable-mcp-server@latest"],
"env": {
"API_KEY": "your_api_key",
"DATASOURCE_ID": "your_datasource_id",
"BASE_URL": "http://your_local_host:port/api"
}
}
}
}
更多重要内容
在本地部署或云服务中使用 MCP 时,请确保携带所需的 API 密钥和数据源 ID,并按需要设置 BASE_URL。若遇到连接问题,请检查网络访问和权限设置,并确保 API 密钥未过期。