Compare commits
3 Commits
secrets-mc
...
secrets-mc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a595081c4c | ||
|
|
0a8b14211a | ||
|
|
9cebbd7587 |
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -1949,7 +1949,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "secrets-mcp"
|
name = "secrets-mcp"
|
||||||
version = "0.1.4"
|
version = "0.1.5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"askama",
|
"askama",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "secrets-mcp"
|
name = "secrets-mcp"
|
||||||
version = "0.1.4"
|
version = "0.1.5"
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
|
|||||||
@@ -535,12 +535,14 @@ function buildOpencodeEntry(apiKey, encKey) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Full OpenCode config: MCP servers live under top-level `mcp`. */
|
||||||
function buildOpencodeConfigText(apiKey, encKey) {
|
function buildOpencodeConfigText(apiKey, encKey) {
|
||||||
return JSON.stringify({ secrets: buildOpencodeEntry(apiKey, encKey) }, null, 2);
|
return JSON.stringify({ mcp: { secrets: buildOpencodeEntry(apiKey, encKey) } }, null, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Strip outer `{` `}` so user can paste `secrets` under an existing `mcp` object. */
|
||||||
function buildOpencodeMergeSnippet(apiKey, encKey) {
|
function buildOpencodeMergeSnippet(apiKey, encKey) {
|
||||||
const wrapped = buildOpencodeConfigText(apiKey, encKey);
|
const wrapped = JSON.stringify({ secrets: buildOpencodeEntry(apiKey, encKey) }, null, 2);
|
||||||
const lines = wrapped.split('\n');
|
const lines = wrapped.split('\n');
|
||||||
return lines.length < 3 ? wrapped : lines.slice(1, -1).join('\n');
|
return lines.length < 3 ? wrapped : lines.slice(1, -1).join('\n');
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user