API Reference: MCP Endpoints
Quick Reference
This document lists the available MCP tools exposed by the mcp-context-server.
Available Tools
| Tool Name | Description | Parameters |
|---|---|---|
read_memory | Reads the project's continuity memory. | None |
write_memory | Appends a learning or context to memory. | content (string) |
browse_page | Navigates 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).