async function executeGitHubTool() {
const result = await client.executeTool({
toolId: 'github-create-pr',
params: {
repo: 'anthropics/claude-code',
title: 'Add new feature',
body: 'Feature description',
branch: 'feature-branch',
},
});
console.log('PR created:', result.url);
}