src / index.ts
import { type PluginContext } from "@lmstudio/sdk";
import { configSchematics } from "./configSchematics";
import { toolsProvider } from "./toolsProvider";
/**
* OneNote Manager — a native LM Studio plugin for local Microsoft OneNote.
*
* Talks to the OneNote desktop app directly through its COM API (via a fixed
* PowerShell bridge). No MCP server and no Python are involved.
*/
export async function main(context: PluginContext) {
context.withConfigSchematics(configSchematics);
context.withToolsProvider(toolsProvider);
}