> For the complete documentation index, see [llms.txt](https://docs.buzzy.buzz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.buzzy.buzz/the-building-blocks/mcp/buzzy-custom-mcp.md).

# Buzzy Custom MCP

Buzzy Custom MCP is the workflow for enabling MCP on an app you built with Buzzy. Once enabled, MCP-aware AI assistants can interact with that app's data and actions through Buzzy-generated tools.

Use this section when you want an app to be available to ChatGPT, Claude, or another MCP-compatible client. If you want an AI agent to build or edit the app itself, use [Buzzy Builder MCP](/the-building-blocks/mcp/buzzy-builder-mcp.md) instead.

## Video Overview

{% embed url="<https://youtu.be/znC1TCOk5P8>" %}

## What Buzzy Exposes

Buzzy generates MCP capabilities from the app you have already built:

* datatable list, get, create, update, and delete tools
* Buzzy Functions that are available as tools
* widgets that can display app data inside an AI assistant experience
* OAuth-based user authentication
* the same server-side data access rules used by runtime and REST API calls

## Security Model

MCP tools follow the same server-side access and [Private Data](/the-building-blocks/datatables-fields-and-data/private-data.md) rules as the Buzzy runtime and REST API.

* MCP calls authenticate as a Buzzy user.
* Row access, Field view, and Field edit rules still apply.
* Basic Private Data is masked or redacted when the caller should not receive the raw value.
* Sensitive Private Data is hidden by default unless the caller has permission to access it through the relevant tool path.
* Private Data image and file fields do not expose denied attachment metadata or signed URLs.

When enabling MCP for a compliance-oriented app, test with both allowed and denied users. Do not assume an AI assistant should receive more data than the same user would see in the Buzzy app.

## Learn More

{% content-ref url="/pages/pLhiHZxENmWpzeMKMOkj" %}
[Implementation](/the-building-blocks/mcp/buzzy-custom-mcp/implementation.md)
{% endcontent-ref %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.buzzy.buzz/the-building-blocks/mcp/buzzy-custom-mcp.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
