File tree Expand file tree Collapse file tree 5 files changed +2
-172
lines changed
packages/core/src/cli/mcp/tools Expand file tree Collapse file tree 5 files changed +2
-172
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,8 @@ claude --plugin-dir /path/to/crayon
3535
3636### MCP Tools
3737
38- 12 tools exposed via ` scripts/run-mcp.cjs ` (prefixed ` mcp__plugin_crayon_crayon-local-tools__ ` ):
38+ 9 tools exposed via MCP (crayon-sandbox ):
3939
40- - ` createApp ` / ` createDatabase ` / ` setupAppSchema ` - Project scaffolding
4140- ` listIntegrations ` / ` getConnectionInfo ` - OAuth connection management
4241- ` listWorkflows ` / ` runWorkflow ` / ` runNode ` - Workflow execution
4342- ` listRuns ` / ` getRun ` / ` getTrace ` - Run history and tracing
@@ -59,7 +58,7 @@ claude --plugin-dir /path/to/crayon
5958| User node | ` src/crayon/nodes/ ` in app | Custom logic functions |
6059| Agent | ` src/crayon/agents/ ` in app (.ts + colocated .md spec) | AI reasoning via Vercel AI SDK |
6160
62- ### App Template Structure (scaffolded by ` createApp ` )
61+ ### App Template Structure (scaffolded by ` crayon init ` )
6362
6463```
6564my-app/
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- import { createAppFactory } from "./createApp.js" ;
2- import { createDatabaseFactory } from "./createDatabase.js" ;
3- import { setupAppSchemaFactory } from "./setupAppSchema.js" ;
41import { listIntegrationsFactory } from "./listIntegrations.js" ;
52import { getConnectionInfoFactory } from "./getConnectionInfo.js" ;
63
@@ -14,9 +11,6 @@ import { getSkillGuideFactory } from "./getSkillGuide.js";
1411
1512export async function getApiFactories ( ) {
1613 return [
17- createAppFactory ,
18- createDatabaseFactory ,
19- setupAppSchemaFactory ,
2014 listIntegrationsFactory ,
2115 getConnectionInfoFactory ,
2216
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments