mirror of
https://github.com/block/goose.git
synced 2026-04-28 11:39:43 +00:00
Add Pieces for Developers MCP server to the extensions library (#2074)
Co-authored-by: Jim Bennett <jim@pieces.app>
This commit is contained in:
parent
b4f5d606ca
commit
f708e4d613
11 changed files with 495 additions and 117 deletions
|
|
@ -35,7 +35,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||
handleGeneratedLink(link, true);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
// Handle custom extension
|
||||
const cmd = urlParams.get('cmd');
|
||||
if (!cmd) {
|
||||
|
|
@ -93,7 +93,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||
tab.addEventListener('click', () => {
|
||||
tabs.forEach(t => t.classList.remove('active'));
|
||||
tab.classList.add('active');
|
||||
|
||||
|
||||
document.querySelectorAll('.tab-content').forEach(content => {
|
||||
content.classList.remove('active');
|
||||
});
|
||||
|
|
@ -197,6 +197,23 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||
return `goose://extension?${queryParams}`;
|
||||
}
|
||||
|
||||
// Handle the case where the command is a URL
|
||||
if (server.url) {
|
||||
const queryParams = [
|
||||
`url=${encodeURIComponent(server.url)}`,
|
||||
`id=${encodeURIComponent(server.id)}`,
|
||||
`name=${encodeURIComponent(server.name)}`,
|
||||
`description=${encodeURIComponent(server.description)}`,
|
||||
...server.environmentVariables
|
||||
.filter((env) => env.required)
|
||||
.map(
|
||||
(env) => `env=${encodeURIComponent(`${env.name}=${env.description}`)}`
|
||||
),
|
||||
].join("&");
|
||||
|
||||
return `goose://extension?${queryParams}`;
|
||||
}
|
||||
|
||||
const parts = server.command.split(" ");
|
||||
const baseCmd = parts[0];
|
||||
const args = parts.slice(1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue