Databutton App MCP
Call your Databutton app endpoints as LLM tools with MCP.
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:
{
"mcpServers": {
"myDatabuttonApp": {
"command": "uvx",
"args": [
"databutton-app-mcp@latest"
],
"env": {
"DATABUTTON_API_KEY": "YOUR-DATABUTTON-APP-KEY"
}
}
}
}
or this
{
"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.
Related Servers
MCP OAuth Sample
A sample MCP OAuth server implementation using Next.js, providing OAuth 2.1 authentication with Google and PostgreSQL.
GoMCP
A Go library for building clients and servers using the Model Context Protocol (MCP).
AILint
AI-powered code quality analysis to detect best practice violations, security issues, and architectural problems in real-time.
Model Context Protocol servers
A collection of reference server implementations for the Model Context Protocol (MCP) using Typescript and Python SDKs.
Honeybadger
Interact with the Honeybadger API for error monitoring and reporting using LLMs.
Clay MCP Server
An MCP server for interacting with the Clay API, which requires a Clay API key.
Remote MCP Server (Authless)
An example of a remote MCP server deployable on Cloudflare Workers, without authentication.
DevRev MCP Server
Access DevRev's APIs to manage work items, parts, search, and user information.
Teleprompter
A server for managing and reusing prompts with Large Language Models (LLMs).
Autodev Codebase
A platform-agnostic code analysis library with semantic search capabilities and MCP server support.