Skip to content

Cooperate with AI Agents

Since 1.9.0, MarkInside provides a local MCP (Model Context Protocol) server.

By default, the server listens on port 9448.

You can check or change the port in MarkInside → Settings → MCP Server.

Replace <PORT> with your actual port number (use 9448 if unchanged).

First, add it to global scope using the Codex command:

Terminal window
codex mcp add --transport http markinside http://127.0.0.1:<PORT>/mcp

You can also add it directly in your configuration file:

  • User-level: ~/.codex/config.toml
  • Project-level: .codex/config.toml
[mcp_servers.markinside]
url = "http://127.0.0.1:<PORT>/mcp"