Skip to content

API Reference: MCP Endpoints

Quick Reference

This document lists the available MCP tools exposed by the mcp-context-server.

Available Tools

Tool NameDescriptionParameters
read_memoryReads the project's continuity memory.None
write_memoryAppends a learning or context to memory.content (string)
browse_pageNavigates the Playwright browser to a URL.url (string)

Example Usage

Node.js Example

javascript
const response = await mcpClient.callTool('read_memory', {});
console.log(response);

Error Codes

  • 400: Invalid parameters provided to the tool.
  • 500: Internal server error (e.g., SQLite lock).

CodyMaster — AI-assisted engineering toolkit