buildout-mcp
v0.1.0
Published
Better MCP server for Buildin.ai
Readme
Buildout MCP
Why?
Better MCP server for Buildin.ai. The official mcp server simply replicates the API, which leads to a large number of calls, an inconvenient response format (json response for each block), and bloated context as a result.
Goal
Provide a more efficient and AI-friendly MCP server for Buildin.ai. Currently focused on readonly access and supports only search and page full text retrieval.
Usage
To use Buildout MCP you need Buildin.ai API key:
- Go to developer center
- Create integration app -> App plugins -> Next
- In the opened form select space and grant
Read contentpermission BUILDIN_API_KEYis the Authorization token- Also grant integration access to desired pages in
Access permissionstab
Clone and build:
git clone https://github.com/wellwineo/buildout-mcp
cd buildout-mcp
npm ci
npm run buildConfigure mcp server:
{
"mcpServers": {
"buildin": {
"type": "stdio",
"command": "node",
"args": [
"/path/to/buildout-mcp/dist/app.js"
],
"env": {
"BUILDIN_API_KEY": "<BUILDIN_API_KEY>"
}
}
}
}