mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 22:32:04 +00:00
18 lines
365 B
TypeScript
18 lines
365 B
TypeScript
/**
|
|
* Configuration fixtures for testing
|
|
*/
|
|
|
|
export const tomlConfigFixture = `
|
|
experimental_use_rmcp_client = true
|
|
|
|
[mcp_servers.automaker-tools]
|
|
command = "node"
|
|
args = ["/path/to/server.js"]
|
|
startup_timeout_sec = 10
|
|
tool_timeout_sec = 60
|
|
enabled_tools = ["UpdateFeatureStatus"]
|
|
|
|
[mcp_servers.automaker-tools.env]
|
|
AUTOMAKER_PROJECT_PATH = "/path/to/project"
|
|
`;
|