diff --git a/ai/model-context-protocol.mdx b/ai/model-context-protocol.mdx
index b5c952b97..9fd360e11 100644
--- a/ai/model-context-protocol.mdx
+++ b/ai/model-context-protocol.mdx
@@ -10,21 +10,28 @@ import { PreviewButton } from "/snippets/previewbutton.jsx"
The Model Context Protocol (MCP) is an open protocol that creates standardized connections between AI applications and external services, like documentation. Mintlify generates an MCP server from your documentation, preparing your content for the broader AI ecosystem where any MCP client like Claude, Cursor, Goose, ChatGPT, and others can connect to your documentation.
-Your MCP server exposes a search tool for AI applications to query your documentation. Your users must connect your MCP server to their tools.
+Your MCP server exposes tools for AI applications to interact with your documentation. Your users must connect your MCP server to their tools.
### How MCP servers work
-When an AI application connects to your documentation MCP server, it can search your documentation directly in response to a user's prompt instead of relying on information from its training data or making a generic web search. Your MCP server provides access to all indexed content on your documentation site.
+When an AI application connects to your documentation MCP server, it can search your documentation and retrieve full page content directly in response to a user's prompt instead of relying on information from its training data or making a generic web search. Your MCP server provides access to all indexed content on your documentation site.
- AI applications can proactively search your documentation while generating a response even if not explicitly asked to search your documentation for an answer.
-- AI applications determine when to use the search tool based on the context of the conversation and the relevance of your documentation.
-- Each search, also known as a tool call, happens during the generation process, so the AI application searches up-to-date information from your documentation to generate its response.
+- AI applications determine when to use the available tools based on the context of the conversation and the relevance of your documentation.
+- Each tool call happens during the generation process, so the AI application accesses up-to-date information from your documentation to generate its response.
+
+### Available tools
+
+Your MCP server provides the following tools:
+
+- **Search**: Searches your documentation and returns matching results with titles, links, and content snippets. Each result includes a page path that can be used with the get page tool.
+- **Get page**: Retrieves the full content of a specific documentation page by its path. Use this tool to read the complete content of a page after finding it through search.