This Model Context Protocol (MCP) server provides AI assistants with direct access to Mastra.ai's complete knowledge base, including comprehensive documentation, code examples, blog posts, and package changelogs. It integrates with Cursor, Windsurf, and Mastra agents to build documentation-aware AI assistants that deliver accurate information about the Mastra.ai ecosystem.
Create or update the .cursor/mcp.json
file in your project root:
For MacOS/Linux:
{
"mcpServers": {
"mastra": {
"command": "npx",
"args": ["-y", "@mastra/mcp-docs-server@latest"]
}
}
}
For Windows:
{
"mcpServers": {
"mastra": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@mastra/mcp-docs-server@latest"]
}
}
}
Note: The MCP server won't be enabled automatically. You'll need to:
Create or update ~/.codeium/windsurf/mcp_config.json
:
For MacOS/Linux:
{
"mcpServers": {
"mastra": {
"command": "npx",
"args": ["-y", "@mastra/mcp-docs-server@latest"]
}
}
}
For Windows:
{
"mcpServers": {
"mastra": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@mastra/mcp-docs-server@latest"]
}
}
}
Important Windsurf notes:
import { MCPConfiguration } from '@mastra/mcp';
import { Agent } from '@mastra/core/agent';
import { openai } from '@ai-sdk/openai';
// Configure MCP with the docs server
const mcp = new MCPConfiguration({
servers: {
mastra: {
command: 'npx',
args: ['-y', '@mastra/mcp-docs-server@latest'],
},
},
});
// Create an agent with access to all documentation tools
const agent = new Agent({
name: 'Documentation Assistant',
instructions: 'You help users find and understand Mastra.ai documentation.',
model: openai('gpt-4'),
tools: await mcp.getTools(),
});
// Or use toolsets dynamically in generate/stream
const response = await agent.stream('Show me the quick start example', {
toolsets: await mcp.getToolsets(),
});
mastraDocs
)This tool provides access to Mastra.ai documentation:
mastraExamples
)Access implementation patterns and sample code:
mastraBlog
)Access technical content from the Mastra.ai blog:
mastraChanges
)Keep track of package updates:
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.