Skip to main content
Glama

get_project_info

Retrieve details about the active Synthesizer V Studio project, including structure and settings, to facilitate vocal track creation and editing.

Instructions

Get information about the current Synthesizer V Studio project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The execution handler for the 'get_project_info' MCP tool. It invokes executeCommand to fetch project details from the Synthesizer V Studio Lua script and returns the result as formatted JSON text.
    case "get_project_info": { const projectInfo = await executeCommand("get_project_info"); return { content: [{ type: "text", text: JSON.stringify(projectInfo, null, 2) }] }; }
  • src/index.ts:244-252 (registration)
    Registration of the 'get_project_info' tool in the list_tools response, including name, description, and empty input schema.
    { name: "get_project_info", description: "Get information about the current Synthesizer V Studio project", inputSchema: { type: "object", properties: {}, required: [] } },
  • TypeScript interface defining the structure of project information returned by the get_project_info tool.
    interface Project { name: string; path: string; tempo: number; timeSignature: string; trackCount: number; }
  • Helper function used by the tool handler to send the 'get_project_info' command to the Lua script via files and retrieve the response.
    async function executeCommand(action: string, params: any = {}): Promise<any> { const command = { action, ...params }; await writeCommand(command); return await readResponse(); }
  • Input schema for the get_project_info tool, indicating no required parameters.
    inputSchema: { type: "object", properties: {}, required: []

Other Tools

Related Tools

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/ocadaruma/mcp-svstudio'

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