Oknola

Guides · For indie hackers

Do you need an MCP server to give AI your business files?

By Ricardo Cardona ·

Usually not. If you use an agent that works on files, such as Claude Code, Codex or Cursor, open it in your folder and it reads the files directly, with nothing to install. An MCP server earns its place when the AI runs somewhere that can’t see your disk, like a chat app, or when it needs a live system rather than files.

What MCP is

MCP, the Model Context Protocol, is an open standard for connecting AI applications to outside systems: files, databases, tools. Its own documentation compares it to a USB-C port for AI apps. Anthropic introduced it, and in December 2025 donated it to the Agentic AI Foundation under the Linux Foundation, where it sits beside AGENTS.md. Claude, ChatGPT, Cursor, VS Code and many other apps support it.

An MCP server is a small program that exposes one system to the AI. The filesystem server exposes folders. Others expose a calendar, a database or a payments account.

When a folder is enough

An agent that runs on your computer already has what a filesystem server would give it: it can list, read and write files in the folder you open it in.

  • Claude Code, Codex or Cursor: open the agent in the folder and ask (how to stop re-explaining your business to every AI).
  • A context file: an AGENTS.md at the top of the folder tells each agent where things live (what AGENTS.md is).
  • Files that say what they are: markdown with a few fields at the top, so the agent can tell a client from an invoice without opening both.

Adding an MCP server here adds a moving part and no new ability.

When MCP earns its place

  • A chat app that can’t see your disk. A desktop chat app such as Claude Desktop can reach a folder on your computer through the filesystem server.
  • A live system. Your calendar, your inbox, your payments account, your database. They aren’t files, so reading a folder won’t reach them. That system’s MCP server will.
  • An agent that runs elsewhere. A hosted agent working on a service you use needs a way in, and MCP is the common one.

If you add one, keep it narrow

A server acts with the access you give it, so give it the least it needs. The filesystem server, for example, only works inside the folders you name when it starts, and it needs at least one. In Claude Desktop’s configuration file, that looks like this:

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/you/business"]
    }
  }
}
  • Name one folder, not your home folder. The business folder, or a narrower one if the job allows.
  • Approve writes one at a time. The filesystem server can write, move and edit files. If the job is reading, don’t let writes run unchecked.
  • Install servers you trust. A local server runs as a program with your permissions. Use official servers, or ones whose source you can read.
  • Remember where the text goes. What a server returns goes to the model behind the chat, like any file you’d paste.

A quick test

Ask where the AI runs and what it needs:

  • It runs on your computer and needs your files: open it in the folder.
  • It runs in a chat app and needs your files: the filesystem server, pointed at one folder.
  • It needs a live system: that system’s MCP server, with the narrowest access it offers.

Where Oknola fits

Scope comes first. Oknola hands each agent only the tags you allow: a business agent gets your clients and your ledger, and your journal stays dark, whatever folder it sits in. There’s no plugin to install and no official integration to wait for: if a tool can read a folder, it can work on your business. Oknola types, tags and files what lands in the folder, so what an agent reads, directly or through a server, stays current. What is available today is on the roadmap.

Questions people ask

Is MCP safe?

As safe as the server you run and the access you give it. An official server, one named folder and writes you approve one at a time keep the risk small.

Does Claude Code need MCP to read my files?

No. It reads the folder you open it in. MCP is for reaching systems outside that folder.

Does MCP replace AGENTS.md?

No. AGENTS.md tells an agent how to behave in a folder. MCP gives an app access to a system. They solve different problems, and both now sit under the Agentic AI Foundation.

Can ChatGPT read a folder on my computer?

Codex, OpenAI’s coding agent, reads the folder you open it in. The ChatGPT chat app doesn’t read your disk by itself, so add the files you need to a project there instead.

How Oknola works for indie hackers

Waitlist

Start with the folder.

The free app comes first, on macOS and Android. Early access opens in waves.

See it work

No spam. Early access news, nothing else.

You're on the list.

We'll write when your wave opens — and your answer just voted on the roadmap.

Check spam if nothing lands within a few minutes.