-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Feat/node butterbase #1069
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Feat/node butterbase #1069
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
ee1e09c
feat(node): add Butterbase MCP client node (#1042)
dsapandora 7aa753a
feat(example): butterbase agent pipe — Anthropic LLM + tool_butterbase
dsapandora ddbaec0
feat(node): butterbase — use Smithery icon URL for the node icon
dsapandora a4138ce
chore(node): butterbase — drop unused placeholder icon (icon is the S…
dsapandora 9593e74
feat(node): butterbase — rename to 'Butterbase MCP Client', drop expe…
dsapandora feb83d9
docs(node): butterbase — add explanatory comments to services.json (m…
dsapandora c4bb46e
docs(node): butterbase — document Developer Mode prerequisite
dsapandora 1c796a5
Working example
dsapandora 9574a57
refactor(node): butterbase — API key dashboard link + extract magic c…
dsapandora a3e72da
test(node): butterbase — add tool_butterbase to skip_nodes (needs liv…
dsapandora f56b8f6
docs(example): butterbase pipe — agent calls butterbase_docs(overview…
dsapandora 883750a
refactor(node): butterbase as a branded service*.json variant of tool…
dsapandora 17f49b3
docs(example): butterbase pipe — encode the gotchas we learned fixing…
dsapandora c549c77
fix(example,node): address PR #1069 review — Anthropic LLM, namespace…
dsapandora bf17c31
feat(node): butterbase — vendor the icon locally instead of the Smith…
dsapandora File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,158 @@ | ||
| { | ||
| "components": [ | ||
| { | ||
| "id": "chat_1", | ||
| "provider": "chat", | ||
| "name": "Chat", | ||
| "config": { | ||
| "hideForm": true, | ||
| "mode": "Source", | ||
| "parameters": {}, | ||
| "type": "chat" | ||
| }, | ||
| "ui": { | ||
| "position": { | ||
| "x": 20, | ||
| "y": 200 | ||
| }, | ||
| "nodeType": "default", | ||
| "formDataValid": true | ||
| } | ||
| }, | ||
| { | ||
| "id": "agent_rocketride_1", | ||
| "provider": "agent_rocketride", | ||
| "name": "RocketRide Wave", | ||
| "config": { | ||
| "instructions": [ | ||
| "You are a backend engineer agent. I'm using Butterbase as my backend. Call the butterbase.butterbase_docs tool with topic \"overview\" first to learn the platform.", | ||
| "Provision and manage the backend with the butterbase tools: create the app, define and apply the schema, configure auth and row-level rules, seed data, and deploy functions/frontend. Developer Mode must be enabled on the app for create/modify operations to succeed.", | ||
| "Keep field names identical between the database schema and any frontend or code you generate — if the column is \"body\", read and write \"body\", not \"content\".", | ||
| "When you build a frontend for the app: use the ABSOLUTE data API base https://api.butterbase.ai/v1/<app_id>, and the auth base https://api.butterbase.ai/auth/<app_id> for signup/login/me (auth is NOT under /v1). Set is_published=true so anonymous visitors can read public rows, auto-login right after signup (email verification is not required to log in), and confirm the frontend deployment reaches status READY so the domain serves the real app.", | ||
| "Inspect available butterbase tools before acting, prefer dry-run/preview where offered, and confirm destructive changes." | ||
| ], | ||
| "max_waves": 20, | ||
| "parameters": {} | ||
| }, | ||
| "ui": { | ||
| "position": { | ||
| "x": 240, | ||
| "y": 200 | ||
| }, | ||
| "nodeType": "default", | ||
| "formDataValid": true | ||
| }, | ||
| "input": [ | ||
| { | ||
| "lane": "questions", | ||
| "from": "chat_1" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "id": "memory_internal_1", | ||
| "provider": "memory_internal", | ||
| "name": "Memory (Internal)", | ||
| "config": { | ||
| "type": "memory_internal" | ||
| }, | ||
| "ui": { | ||
| "position": { | ||
| "x": 300, | ||
| "y": 360 | ||
| }, | ||
| "nodeType": "default", | ||
| "formDataValid": true | ||
| }, | ||
| "control": [ | ||
| { | ||
| "classType": "memory", | ||
| "from": "agent_rocketride_1" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "id": "tool_butterbase_1", | ||
| "provider": "tool_butterbase", | ||
| "name": "Butterbase MCP Client", | ||
| "config": { | ||
| "type": "tool_butterbase", | ||
| "transport": "streamable-http", | ||
| "endpoint": "https://api.butterbase.ai/mcp", | ||
| "serverName": "butterbase", | ||
| "bearer": "${ROCKETRIDE_BUTTERBASE_API_KEY}" | ||
| }, | ||
| "ui": { | ||
| "position": { | ||
| "x": 500, | ||
| "y": 360 | ||
| }, | ||
| "nodeType": "default", | ||
| "formDataValid": true | ||
| }, | ||
| "control": [ | ||
| { | ||
| "classType": "tool", | ||
| "from": "agent_rocketride_1" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "id": "response_answers_1", | ||
| "provider": "response_answers", | ||
| "name": "Return Answers", | ||
| "config": { | ||
| "laneName": "answers" | ||
| }, | ||
| "ui": { | ||
| "position": { | ||
| "x": 460, | ||
| "y": 200 | ||
| }, | ||
| "nodeType": "default", | ||
| "formDataValid": true | ||
| }, | ||
| "input": [ | ||
| { | ||
| "lane": "answers", | ||
| "from": "agent_rocketride_1" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "id": "llm_anthropic_1", | ||
| "provider": "llm_anthropic", | ||
| "name": "Anthropic", | ||
| "config": { | ||
| "profile": "claude-sonnet-4-6", | ||
| "claude-sonnet-4-6": { | ||
| "apikey": "${ROCKETRIDE_ANTHROPIC_KEY}" | ||
| }, | ||
| "parameters": {} | ||
| }, | ||
| "ui": { | ||
| "position": { | ||
| "x": 80, | ||
| "y": 360 | ||
| }, | ||
| "nodeType": "default", | ||
| "formDataValid": true | ||
| }, | ||
| "control": [ | ||
| { | ||
| "classType": "llm", | ||
| "from": "agent_rocketride_1" | ||
| } | ||
| ] | ||
| } | ||
| ], | ||
| "project_id": "b5c8c9fa-a05d-4c9c-b7e0-fd250ee5b679", | ||
| "version": 1, | ||
| "isLocked": false, | ||
| "snapToGrid": true, | ||
| "snapGridSize": [ | ||
| 10, | ||
| 10 | ||
| ], | ||
| "docRevision": 13 | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.