Cooperate with AI Agents
Since 1.9.0, MarkInside provides a local MCP (Model Context Protocol) server.
Connect to the MCP Server Directly
Section titled “Connect to the MCP Server Directly”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:
codex mcp add --transport http markinside http://127.0.0.1:<PORT>/mcpYou 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"Register the MCP server:
claude mcp add --transport http markinside http://127.0.0.1:<PORT>/mcpFor project scope, run:
claude mcp add --transport http --scope project markinside http://127.0.0.1:<PORT>/mcpYou can also edit the project config file .mcp.json:
{ "mcpServers": { "markinside": { "url": "http://127.0.0.1:<PORT>/mcp" } }}