Back to Memos

MCP Server

server/router/mcp/README.md

0.30.012.4 KB
Original Source

MCP Server

This package serves an OpenAPI-driven Model Context Protocol (MCP) endpoint at /mcp. It exposes a curated, memo-focused toolset over the Streamable HTTP transport using the official github.com/modelcontextprotocol/go-sdk.

The core design principle: tool calls execute in-process against the existing REST API. The package owns no store or service logic of its own. Each tool is derived from an operation in the generated OpenAPI document (proto/gen/openapi.yaml, embedded via proto.OpenAPIYAML()), and a tool call is translated into the matching /api/v1/... HTTP request and run against the same Echo server that serves the public API. This keeps OpenAPI as the single source of truth and reuses the API's authentication and authorization as-is.

Integration

server.NewServer calls mcp.NewMCPService after registering the API, file, RSS, and gRPC-gateway routes, passing the same Echo server:

go
mcpService, err := mcp.NewMCPService(profile, echoServer)
if err != nil {
    return nil, errors.Wrap(err, "failed to create MCP service")
}
mcpService.RegisterRoutes(echoServer)

The service advertises the tools capability only — no prompts, no resources.

Startup flow

NewMCPService (service.go) wires everything up at construction time and fails fast on any inconsistency:

  1. loadMCPServiceOpenAPISpec parses the embedded proto.OpenAPIYAML() bytes into an openAPISpec.
  2. buildOperationRegistry (openapi.go) indexes every operation by operationId, recording method, path, resolved request-body schema, and resolved 200 response schema.
  3. buildCuratedTools (catalog.go) selects the allowlisted operation IDs and converts each into an *sdkmcp.Tool plus a registeredOperation. Missing IDs or duplicate tool names are construction errors.
  4. Each tool is registered with server.AddTool(tool, newMCPToolHandler(...)).
  5. sdkmcp.NewStreamableHTTPHandler wraps the server in stateless, JSON-response mode (no SSE, no session tracking).

Request flow

RegisterRoutes binds echoServer.Any("/mcp", ...). Each request:

  1. isAllowedMCPOrigin (origin.go) rejects disallowed cross-origin browser requests with 403.
  2. The request body is capped at 256 MiB before the SDK reads it.
  3. The SDK streamable handler dispatches the MCP message.
  4. On a tools/call request, newMCPToolHandler (service.go) decodes the JSON arguments into a map.
  5. validateToolArguments (validation.go) checks them against the tool's input schema.
  6. The caller's Authorization header is read from the request (request.Extra.Header on the SDK's *sdkmcp.CallToolRequest).
  7. apiAdapter.execute (adapter.go) builds the API request (buildAPIRequest: path-parameter substitution, query encoding, JSON body), forwards the bearer token, and runs it against the Echo server through an httptest.ResponseRecorder.
  8. The recorder body is decoded; a non-2xx status becomes a tool error (newToolErrorResult), otherwise the value is wrapped by newStructuredToolResult.

Schema resolution

MCP tool schemas must be self-contained JSON Schema, but the OpenAPI components use $ref. openapi.go resolves these into local definitions:

  • Top-level inlining. The request-body and 200-response schemas for an operation are resolved with inlineRef = true, so the outermost $ref is expanded in place (resolveSchemaRefresolveSchemaValueresolveSchemaMap).
  • Nested refs become $defs. Any $ref encountered below the top level is rewritten to a local #/$defs/<Name> pointer, and the referenced component is collected into a $defs map (addSchemaDef).
  • Cycle safety. Recursive component schemas are handled by seeding defs[name] with a placeholder and tracking resolving[name] before recursing, so a schema that references itself terminates (addSchemaDef).

catalog.go then assembles the per-tool input schema in inputSchemaForOperation:

  • Path and query parameters become top-level properties; any required parameter stays in required.
  • A request body becomes a single body property; a required body adds body to required. Body $defs are lifted to the schema's top-level $defs.
  • Per-operation overrides relax resource-level requirements for create and partial-update bodies and remove fields already supplied by a path binding from body: "*" schemas. Memo updates may omit updateMask so the REST gateway can infer it from the fields present in the request body.
  • The schema sets "additionalProperties": false.

The output schema is the operation's 200 application/json schema. When a 200 response has no JSON body, the fallback is:

json
{ "type": "object", "properties": { "ok": { "type": "boolean" } } }

Endpoint, transport & auth

  • Endpoint: POST /mcp (the SDK may also use GET/DELETE on the same path for the Streamable HTTP transport).
  • Transport: Streamable HTTP, stateless, JSON responses.
  • Request size: request bodies are limited to 256 MiB before SDK dispatch.
  • Auth: the caller's Authorization: Bearer <token> header is forwarded to the in-process API request. Mutating tools therefore require a valid token (personal access token or access token); public reads may work without one, exactly as the REST API allows.
  • Origin safety: isAllowedMCPOrigin allows a request when the Origin header is absent (desktop clients commonly omit it), when its host matches the request Host header (host comparison only — scheme is not checked), or when it matches the configured profile.InstanceURL. Anything else gets 403. This guards against DNS-rebinding from browsers.

Connecting a client

Point any Streamable HTTP MCP client at https://<your-instance>/mcp and supply a personal access token as a bearer credential. Example client config:

json
{
  "mcpServers": {
    "memos": {
      "type": "http",
      "url": "https://<your-instance>/mcp",
      "headers": {
        "Authorization": "Bearer <your-personal-access-token>"
      }
    }
  }
}

Tool surface

The server exposes a curated allowlist (curatedOperationIDs in catalog.go), centered on memos and attachments, plus two read-only orientation tools: shortcut_list_shortcuts (surfaces a user's saved CEL filters for reuse with memo_list_memos) and auth_get_current_user (a "whoami" so an agent can resolve its own user — the single allowed auth/identity operation):

OpenAPI operationMCP tool
MemoService_ListMemosmemo_list_memos
MemoService_CreateMemomemo_create_memo
MemoService_GetMemomemo_get_memo
MemoService_UpdateMemomemo_update_memo
MemoService_DeleteMemomemo_delete_memo
MemoService_ListMemoCommentsmemo_list_memo_comments
MemoService_CreateMemoCommentmemo_create_memo_comment
MemoService_ListMemoAttachmentsmemo_list_memo_attachments
MemoService_SetMemoAttachmentsmemo_set_memo_attachments
MemoService_ListMemoReactionsmemo_list_memo_reactions
MemoService_UpsertMemoReactionmemo_upsert_memo_reaction
MemoService_DeleteMemoReactionmemo_delete_memo_reaction
MemoService_ListMemoRelationsmemo_list_memo_relations
MemoService_SetMemoRelationsmemo_set_memo_relations
AttachmentService_ListAttachmentsattachment_list_attachments
AttachmentService_CreateAttachmentattachment_create_attachment
AttachmentService_GetAttachmentattachment_get_attachment
AttachmentService_DeleteAttachmentattachment_delete_attachment
ShortcutService_ListShortcutsshortcut_list_shortcuts
AuthService_GetCurrentUserauth_get_current_user

Naming rule (toolNameFromOperationID): drop the Service suffix from the subject and convert both subject and method from camelCase to snake_case, joined by _. So MemoService_ListMemos → memo_list_memos.

Annotations (annotationsForOperation) start from the HTTP method:

MethodReadOnlyDestructiveIdempotent
GETtruefalsetrue
DELETEfalsetruetrue
other (POST, PATCH, …)falsefalsefalse

Per-operation overrides then correct cases the method heuristic gets wrong. MemoService_SetMemoAttachments and MemoService_SetMemoRelations are PATCH but declaratively replace the full set on a memo, so they report both IdempotentHint: true and DestructiveHint: true. MemoService_UpdateMemo also reports DestructiveHint: true because it can overwrite existing fields.

OpenWorldHint is false for all tools. Annotations are client hints; they do not replace API authorization.

Result shape. Every successful result carries object-shaped structuredContent (normalizeStructuredContent in result.go):

  • a JSON object is returned unchanged;
  • an empty response becomes { "ok": true };
  • a bare array becomes { "result": [...] };
  • a scalar becomes { "result": value }.

This is deliberate: it fixes #6022, where collection tools returned a bare array that strict MCP clients reject.

Error handling

Failures are returned as MCP tool errors (CallToolResult with IsError: true and a text content block), not JSON-RPC protocol errors — the handler returns (result, nil). Error results omit structuredContent so strict clients do not validate an error payload against the tool's success-only output schema:

FailureResult
Arguments are not valid JSONtool error: decode message
Arguments fail schema validationtool error: validation message
Missing required path parametertool error: missing required path parameter "..."
Missing required request bodytool error: missing required request body "body"
API responds non-2xxtool error: "<code> <reason phrase>: <api message>" (e.g. "404 Not Found: ...") (apiErrorMessage)
API response body is not decodable JSONtool error: decode message

Core files

FileResponsibility
service.goConstructs the MCP server, registers tools, builds the streamable HTTP handler, and binds the /mcp route.
catalog.goThe curated operation allowlist, tool naming, input/output schema assembly, and method-derived annotations.
adapter.goTranslates a tool call into an /api/v1/... request and runs it in-process against the Echo server.
openapi.goParses the OpenAPI spec, builds the operation registry, and resolves $ref schemas into self-contained JSON Schema.
validation.goValidates tool-call arguments against the tool's input schema.
origin.goOrigin-header check for browser DNS-rebinding safety.
result.goNormalizes API responses into object-shaped structuredContent and builds error results.

Adding a tool

  1. Add the OpenAPI operationId to curatedOperationIDs in catalog.go.

  2. If the operation is not in the generated OpenAPI, add or adjust the proto/API surface first, then regenerate:

    bash
    cd proto && buf generate
    
  3. Extend the tests in catalog_test.go / service_test.go to cover the new tool.

Never hand-edit proto/gen/openapi.yaml or other generated output — change the proto definitions and regenerate.

Testing

bash
go test ./server/router/mcp/...
  • openapi_test.go — spec parsing, registry building, $ref resolution.
  • catalog_test.go — tool selection, naming, schema and annotation building.
  • adapter_test.go — request construction and in-process execution (adapter.go), plus result normalization and error shaping (result.go).
  • validation_test.go — argument validation against input schemas.
  • service_test.go — the origin-header check, plus the end-to-end MCP protocol (initialize, tools/list, tools/call) confirming object-shaped structuredContent.

Design notes

  • Two-layer input validation. validateToolArguments runs a hand-rolled structural check (validateSchemaValue) and then the google/jsonschema-go validator. The first yields friendly messages; the second is the spec-complete backstop.
  • Embedded vs. file load. Production reads the spec from proto.OpenAPIYAML() (loadMCPServiceOpenAPISpec). The path-based loadOpenAPISpec in openapi.go exists for tests.
  • Tools only. The server advertises no prompts or resources in this version.