Skip to main content
Glama
wellWINeo

buildout-mcp

by wellWINeo

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.

Related MCP server: mcp-rag-server

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

Obtain access token

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 content permission

  • BUILDIN_API_KEY is the Authorization token

  • Also grant integration access to desired pages in Access permissions tab

NPM

{
  "mcpServers": {
    "buildin": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "buildout-mcp"
      ],
      "env": {
        "BUILDIN_API_KEY": "<BUILD_ACCESS_TOKEN>"
      }
    }
  }
}

Clone and build:

git clone https://github.com/wellwineo/buildout-mcp
cd buildout-mcp
npm ci
npm run build

Configure mcp server:

{
  "mcpServers": {
    "buildin": {
      "type": "stdio",
      "command": "node",
      "args": [
        "/path/to/buildout-mcp/dist/app.js"
      ],
      "env": {
        "BUILDIN_API_KEY": "<BUILD_ACCESS_TOKEN>"
      }
    } 
  }
}

License

MIT License

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that indexes documents and serves relevant context to LLMs via Retrieval Augmented Generation (RAG).
    25 npm
    37
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    A zero-config MCP server that lets AI agents fetch, read, and search live web pages without API keys or databases, using in-process BM25 retrieval.
    31 npm
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    An MCP server that exposes a single tool to retrieve Wikipedia articles from local multistream dump files, offering fast offline access with redirect following and fuzzy matching.
    -