trackmcp
Back to directory
databutton

databutton-app-mcp

View on GitHub

Use your Databutton app APIs as tools in other agents with MCP

1 stars PythonAI & Machine Learning Updated Apr 4, 2025

Documentation

Databutton App MCP

Use API endpoints from your Databutton app as LLM tools from any MCP compatible client!

This is a simple proxy that runs locally and connects securely to your Databutton app

using the MCP protocol over websockets.

To use it, make sure you have uv installed, see instructions here if not:

https://docs.astral.sh/uv/getting-started/installation/

First download an API key from the settings page of your Databutton app, and save it to a file.

Then configure your LLM client (e.g. Claude Desktop or Cursor), like this:

json
{
  "mcpServers": {
    "myDatabuttonApp": {
      "command": "uvx",
      "args": [
        "databutton-app-mcp@latest"
      ],
      "env": {
        "DATABUTTON_API_KEY": "YOUR-DATABUTTON-APP-KEY"
      }
    }
  }
}

or this

json
{
  "mcpServers": {
    "myDatabuttonApp": {
      "command": "uvx",
      "args": [
        "databutton-app-mcp@latest"
        "-k",
        "/path/to/apikey.txt"
      ]
    }
  }
}

Here /path/to/apikey.txt is the full path to a file containing the api key,

or DATABUTTON_API_KEY is either the api key value or the path to a file containing it.

You can download the API key for your Databutton app on the app settings page.

Make sure to keep it secure and don't share it.

Frequently asked questions

What is databutton-app-mcp?

databutton-app-mcp is Use your Databutton app APIs as tools in other agents with MCP

How do I install databutton-app-mcp?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is databutton-app-mcp open source?

Yes — it is hosted on GitHub at https://github.com/databutton/databutton-app-mcp and has 1 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP