Skip to main content
Glama

list_markers

Retrieve all markers and regions from a REAPER project to organize and navigate audio editing sessions.

Instructions

List all markers and regions in the project.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The MCP tool registration and wrapper function for list_markers, which delegates the call to the ReaperAdapter.
    @mcp.tool()
    def list_markers() -> dict[str, Any]:
        """List all markers and regions in the project."""
        try:
            return _wrap(adapter.list_markers())
        except Exception as exc:
            return _err(exc)
  • The implementation of list_markers in ReaperAdapter, which directly calls the underlying BridgeClient to fetch marker data from REAPER.
    def list_markers(self) -> list[dict[str, Any]]:
        return self._client.call("list_markers")

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/danielkinahan/ReaMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server