@pipeshub-ai/mcp 2.3.2 → 2.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -3
- package/bin/mcp-server.js +2 -2
- package/bin/mcp-server.js.map +3 -3
- package/bin/pipeshub.js +2 -2
- package/bin/pipeshub.js.map +3 -3
- package/esm/cli/commands.d.ts.map +1 -1
- package/esm/cli/commands.js +7 -9
- package/esm/cli/commands.js.map +1 -1
- package/esm/mcp-server/tools/pipeshubChat.js +1 -1
- package/esm/mcp-server/tools/pipeshubChat.js.map +1 -1
- package/package.json +2 -1
- package/qm/README.md +3 -4
- package/qm/TROUBLESHOOTING.md +12 -18
- package/qm/sandbox/Dockerfile +1 -1
- package/qm/sandbox/skills/pipeshub/SKILL.md +14 -12
- package/qm/sandbox/tools/pipeshub/tool.json +1 -1
- package/src/cli/commands.ts +7 -9
- package/src/mcp-server/tools/pipeshubChat.ts +1 -1
package/README.md
CHANGED
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
This guide covers how to connect PipesHub's remote MCP server to **Cursor**, **Claude Code**, **Gemini CLI**, **Codex CLI**, **Claude.ai (Web)**, and **LibreChat** using static OAuth credentials or bearer tokens.
|
|
4
4
|
|
|
5
|
-
PipesHub exposes a remote MCP endpoint over **Streamable HTTP** at `/mcp`.MCP Clients connect to this endpoint directly -- no local npm packages or stdio processes needed.
|
|
6
|
-
|
|
7
|
-
> **Looking for the tool reference?** See [TOOLS.md](./TOOLS.md) for descriptions, arguments, and a decision guide for each tool the MCP server exposes (`pipeshub_chat`, `pipeshub_search`, `pipeshub_download_record`, `pipeshub_directory`, `pipeshub_sources`).
|
|
5
|
+
PipesHub exposes a remote MCP endpoint over **Streamable HTTP** at `/mcp`. MCP Clients connect to this endpoint directly -- no local npm packages or stdio processes needed.
|
|
8
6
|
|
|
7
|
+
> **Coding agent?** Start at [For coding agents](https://docs.pipeshub.com/for-agents.md). Install the skill into the *user's* repo with `npx skills add pipeshub-ai/mcp-server` (see [`skills/pipeshub`](./skills/pipeshub/SKILL.md)). Contributors working in this repository: read [AGENTS.md](./AGENTS.md).
|
|
8
|
+
>
|
|
9
|
+
> **Looking for the tool reference?** See [TOOLS.md](./TOOLS.md) for descriptions, arguments, and a decision guide for each tool the MCP server exposes (`pipeshub_chat`, `pipeshub_search`, `pipeshub_get_record_content`, `pipeshub_download_record`, `pipeshub_directory`, `pipeshub_sources`, `pipeshub_agents`).
|
|
10
|
+
>
|
|
9
11
|
> **Using QM?** QM cannot attach a third-party MCP endpoint — it is an MCP *server* to its own harness, not a client. Follow [Use PipesHub with QM](./qm/docs/use-with-qm.md). The deployment-layer bundle in [`qm/`](./qm/) gives agents a `pipeshub` command inside their sandbox; this package ships that command as a second bin.
|
|
10
12
|
|
|
11
13
|
## Prerequisites
|
package/bin/mcp-server.js
CHANGED
|
@@ -53433,7 +53433,7 @@ var init_pipeshubChat = __esm(() => {
|
|
|
53433
53433
|
query: string2().min(1).describe("The user's question or message for this turn."),
|
|
53434
53434
|
conversationId: string2().optional().describe("Existing conversation id to continue. Omit on the FIRST turn; on every " + "subsequent turn pass the `conversationId` returned by the previous " + "call. Server-side message history is preserved — do NOT replay " + "prior messages."),
|
|
53435
53435
|
filters: FiltersShape.describe("Source scoping for retrieval. Pass `apps` ids from `pipeshub_sources`. " + "Only meaningful on the FIRST turn (when starting a new conversation)."),
|
|
53436
|
-
modelKey: string2().optional().describe("Model id to use (from `pipeshub_sources` `
|
|
53436
|
+
modelKey: string2().optional().describe("Model id to use (from `pipeshub_sources` `llmModels[*].modelKey`). " + "Defaults to the org's default LLM."),
|
|
53437
53437
|
modelName: string2().optional(),
|
|
53438
53438
|
modelFriendlyName: string2().optional(),
|
|
53439
53439
|
agentId: string2().optional().describe("Optional PipesHub agent to converse with — the `agentId` from " + "`pipeshub_agents`. When set, this turn runs against that agent's " + "configuration (prompt, tools, knowledge). On follow-up turns pass the " + "SAME `agentId` together with the `conversationId` returned by the " + "previous call. Omit for a plain (non-agent) conversation. If unsure " + "which agent to use, call `pipeshub_agents` first to see the options."),
|
|
@@ -59234,5 +59234,5 @@ export {
|
|
|
59234
59234
|
app
|
|
59235
59235
|
};
|
|
59236
59236
|
|
|
59237
|
-
//# debugId=
|
|
59237
|
+
//# debugId=AB395F463BB257DB64756E2164756E21
|
|
59238
59238
|
//# sourceMappingURL=mcp-server.js.map
|