How to Build a Company Brain for Cline with Fast.io
Running AI coding agents on local code bases often leads to lost context and limits overall productivity. This guide outlines how to build an intelligent company brain for Cline using Fast.io workspaces and remote Model Context Protocol (MCP) servers. Learn how to ingest documentation, use Metadata Views for structured extraction, and configure cline_mcp_settings.json for persistent memory.
Why Local Storage Isolates AI Coding Agents
In the 2024 Stack Overflow Developer Survey, 76% of respondents reported that they are currently using or planning to use AI tools in their development process, yet 45% of them believe these systems struggle to handle complex tasks. The primary bottleneck is context. Local directories and static wikis force agents like Cline to read raw directories, exhaust context limits, and write conflicting updates. When developers run Model Context Protocol (MCP) servers locally, the storage boundaries are restricted to a single machine. When you close your IDE, switch from an office desktop to a laptop, or reload your editor workspace, the agent's active memory resets. This local boundary isolates the agent and prevents it from maintaining long-term memory across different development sessions.
To solve this persistence issue, developers can connect their coding agents to a shared, persistent cloud workspace. Fast.io serves as an intelligent workspace platform where humans and AI agents collaborate on the same files, notes, and configurations. By routing your agent's reads and writes to a cloud workspace, you establish a centralized knowledge base.
A company brain is a centralized, indexed repository of documents that provides contextual grounding for human developers and AI coding agents like Cline.
This centralized brain ensures that your reference manuals, style guides, and documentation remain persistent and accessible across every machine and coding session. You can establish this secure, persistent repository with a 14-day free trial on the Fast.io pricing page.
How to Build a Company Brain for Cline with Fast.io
Building a company brain starts with getting your organization's documentation into your cloud workspace. General cloud storage tools and local repositories isolate files, leading to version conflicts. Fast.io solves this by providing shared workspaces where both human developers and coding agents can access the same assets.
You can ingest files into your workspaces using the Cloud Import feature. This allows you to pull files directly from Google Drive, Dropbox, OneDrive, and Box. The import process preserves the existing folder structure and handles nested subfolders automatically. You can read more about these features on the Cloud Import page.
To import files from your existing cloud storage, follow these steps:
- Open the Fast.io web dashboard and select your active workspace.
- Click the Import button and choose your cloud provider.
- Authorize Fast.io to access your files using OAuth.
- Select the directories containing your documentation and click Start Import.
Fast.io also supports URL import, allowing you to ingest files from any public URL without local disk operations. Once imported, files are processed and indexed for search and AI chat. Fast.io handles large file transfers using chunked uploads, ensuring that large PDF books or API documentation sets transfer reliably. Note that continuous cloud sync import is not supported. Fast.io focuses on secure, point-in-time imports so that developers and agents work from a stable, versioned snapshot of the organization's knowledge.
Creating Queryable Databases with Metadata Views
A major gap in most developer guides is their reliance on static, nested folders. A true company brain should function as a live, queryable database rather than a passive folder structure. Fast.io accomplishes this through Metadata Views, turning unstructured documents into structured tables.
Fast.io uses Gemini 2.5 Pro to suggest extraction columns and typed schemas, match files, and populate a spreadsheet. When you point Metadata Views at a folder of unstructured documents, the system automatically extracts the relevant fields. This feature supports seven column types: Text, Integer, Decimal, Boolean, URL, JSON, and Date & Time. You do not need to write complex OCR rules or regular expressions. The AI reads the documents and populates the spreadsheet grid.
For example, if your workspace contains dozens of API specifications and architecture designs, you can create a view with columns like "Protocol Type," "Target Environment," and "Authentication Method." The system will scan the folder, classify which documents are relevant, and extract the values.
Because the spreadsheet data is exposed via the remote MCP server, Cline can query this tabular data programmatically. Instead of scanning hundreds of text pages to find which service uses a specific port or protocol, the agent can run a single query against the view. This structured data grid is also accessible to human developers in the web interface, providing a shared coordination layer. You can find detailed setup instructions on the Metadata Views product page.
Connect Cline to an intelligent cloud workspace
Expose your company brain to Cline using a remote Model Context Protocol endpoint, complete with semantic search and versioning. Every organization starts with a 14-day free trial, which requires a credit card. | Plans are Starter at $29/mo, Business at $99/mo, and Growth at $299/mo.
Registering the Remote Fast.io MCP Server in Cline
To allow Cline to interact with your company brain, you must register the Fast.io MCP server in your local configuration. Unlike local MCP servers that run as Node.js processes, the Fast.io MCP server is remote, hosted at https://mcp.fast.io/mcp/key. There is no npm package to install locally. You configure Cline to communicate directly with the secure HTTPS endpoint.
Cline reads its MCP configurations from the settings file cline_mcp_settings.json. The location of this file depends on your operating system:
- On macOS, open:
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json - On Windows, open:
%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json - On Linux, open:
~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
If you are using the Cline command-line interface, the settings are stored in ~/.cline/data/settings/cline_mcp_settings.json.
To register the remote server, open your settings file and add the following JSON block under the mcpServers key:
{
"mcpServers": {
"fastio-brain": {
"type": "streamableHttp",
"url": "https://mcp.fast.io/mcp/key",
"headers": {
"Authorization": "Bearer YOUR_FASTIO_API_KEY"
},
"disabled": false,
"autoApprove": []
}
}
}
Replace YOUR_FASTIO_API_KEY with a token generated from the API Keys section under Account & Admin in your Fast.io web dashboard. Once you save the file, the Cline extension will load the remote server. You can check the connection status in the MCP Servers tab in the Cline sidebar panel. A green indicator indicates a successful connection. By using this remote endpoint, you offload document indexing and search processing to the cloud, preserving your local machine's memory and CPU resources.
Running Hybrid Search and Querying Collaborative Notes
Once connected, Cline can access the full intelligence layer of your workspace. Fast.io does not just store files, it indexes them automatically for semantic retrieval when Intelligence Mode is active. This indexing enables hybrid search, which combines exact full-text matching with semantic meaning retrieval.
When Cline attempts to solve a programming task, it can search your company brain using the hybrid search tool. The agent can search for specific variables, function names, or policy numbers using exact matching, while also running queries for broad concepts. The search results include preview snippets and written answers backed by page-level citations. This keeps the agent's context window clean: instead of reading whole folders into memory, Cline queries the search tool and reads only the relevant passages.
In addition to files and PDFs, Cline can read and edit Collaborative Notes. Fast.io Notes brings Google-Docs-style real-time co-editing to every workspace, complete with live multiplayer cursors. Both human developers and AI coding agents participate as first-class co-editors on the same active document canvas.
Collaborative Notes in Fast.io are fully indexed for AI search in real-time, meaning any updates made by a human developer are immediately discoverable by Cline. This is useful for sharing project requirements or active notes. If you edit a note to update a style guideline, the agent will detect the change during its next search and write code that matches the new specification. Learn more about these configurations in the Fast.io AI documentation or the agent onboarding guide.
Troubleshooting Connection Issues and Transferring Organization Ownership
If the connection between Cline and Fast.io fails to initialize, verify these common configuration errors:
- Syntax Errors in the JSON file: A missing or trailing comma in the
cline_mcp_settings.jsonfile will prevent the extension from loading any configured servers. Always check your JSON formatting in VS Code to ensure it is valid. - Missing Transport Type: Ensure that you have specified
"type": "streamableHttp"in the configuration block. If you omit this, Cline will attempt to run the remote URL as a local command, which will fail immediately. - API Key Authentication: Check that your authorization header is formatted as
Bearer YOUR_FASTIO_API_KEY. If the token is invalid or expired, the remote server will return a connection error.
Once your workspace is configured and the agent's work is complete, you can transfer ownership of the organization to a human manager. Fast.io runs on a usage-based credit model where organizations pay for storage, bandwidth, and AI tokens. The developer-agent flow allows an agent to sign up free, construct the workspaces, and then hand over the organization to a human who joins and starts the 14-day free trial.
Every organization starts with a 14-day free trial, which requires a credit card. | Plans are Starter at $29/mo, Business at $99/mo, and Growth at $299/mo. Once the human administrator takes ownership, they can manage billing while the agent retains scoped access to continue its tasks. To begin setting up your team's workspace, register for a 14-day free trial on the Fast.io pricing page.
Frequently Asked Questions
How do I build a company brain for my team?
You can build a company brain by setting up a shared Fast.io workspace, enabling Intelligence Mode for automatic indexing, and importing your organization's documentation. Both human developers and AI coding agents can then access and search this centralized knowledge base in real-time.
Can Cline read documents from a shared company wiki?
Yes, you can import documentation from platforms like Google Drive or OneDrive into a Fast.io workspace. Once imported, the documents are indexed, allowing Cline to run hybrid search queries and retrieve the relevant context using the Fast.io MCP server.
How do I index PDFs for Cline?
Import your PDFs into a Fast.io workspace using the Cloud Import or URL import tool. Fast.io automatically processes and indexes the PDF files for semantic search, enabling Cline to retrieve page-level citations when answering questions.
Related Resources
Connect Cline to an intelligent cloud workspace
Expose your company brain to Cline using a remote Model Context Protocol endpoint, complete with semantic search and versioning. Every organization starts with a 14-day free trial, which requires a credit card. | Plans are Starter at $29/mo, Business at $99/mo, and Growth at $299/mo.