@pipeshub-ai/mcp 2.3.3 → 2.4.1
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 +2 -2
- package/bin/mcp-server.js +328 -210
- package/bin/mcp-server.js.map +12 -12
- package/bin/pipeshub.js +16 -8
- package/bin/pipeshub.js.map +4 -4
- package/esm/cli/commands.d.ts +1 -1
- package/esm/cli/commands.d.ts.map +1 -1
- package/esm/cli/commands.js +4 -1
- package/esm/cli/commands.js.map +1 -1
- package/esm/cli/pipeshub.js +13 -6
- package/esm/cli/pipeshub.js.map +1 -1
- package/esm/mcp-server/instructions.d.ts +1 -1
- package/esm/mcp-server/instructions.d.ts.map +1 -1
- package/esm/mcp-server/instructions.js +9 -6
- package/esm/mcp-server/instructions.js.map +1 -1
- package/esm/mcp-server/tools/_helpers.d.ts +76 -0
- package/esm/mcp-server/tools/_helpers.d.ts.map +1 -1
- package/esm/mcp-server/tools/_helpers.js +151 -0
- package/esm/mcp-server/tools/_helpers.js.map +1 -1
- package/esm/mcp-server/tools/pipeshubChat.d.ts.map +1 -1
- package/esm/mcp-server/tools/pipeshubChat.js +25 -11
- package/esm/mcp-server/tools/pipeshubChat.js.map +1 -1
- package/esm/mcp-server/tools/pipeshubDownloadRecord.d.ts.map +1 -1
- package/esm/mcp-server/tools/pipeshubDownloadRecord.js +15 -12
- package/esm/mcp-server/tools/pipeshubDownloadRecord.js.map +1 -1
- package/esm/mcp-server/tools/pipeshubSearch.d.ts +1 -0
- package/esm/mcp-server/tools/pipeshubSearch.d.ts.map +1 -1
- package/esm/mcp-server/tools/pipeshubSearch.js +22 -13
- package/esm/mcp-server/tools/pipeshubSearch.js.map +1 -1
- package/esm/mcp-server/tools/pipeshubSources.d.ts.map +1 -1
- package/esm/mcp-server/tools/pipeshubSources.js +15 -27
- package/esm/mcp-server/tools/pipeshubSources.js.map +1 -1
- package/esm/tool-names.js +3 -3
- package/esm/tool-names.js.map +1 -1
- package/package.json +1 -1
- package/qm/sandbox/Dockerfile +1 -1
- package/qm/sandbox/skills/pipeshub/SKILL.md +1 -0
- package/src/cli/commands.ts +3 -0
- package/src/cli/pipeshub.ts +12 -6
- package/src/mcp-server/instructions.ts +9 -6
- package/src/mcp-server/tools/_helpers.ts +233 -0
- package/src/mcp-server/tools/pipeshubChat.ts +31 -10
- package/src/mcp-server/tools/pipeshubDownloadRecord.ts +15 -12
- package/src/mcp-server/tools/pipeshubSearch.ts +38 -13
- package/src/mcp-server/tools/pipeshubSources.ts +18 -25
- package/src/tool-names.ts +3 -3
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ This guide covers how to connect PipesHub's remote MCP server to **Cursor**, **C
|
|
|
4
4
|
|
|
5
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
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).
|
|
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)) and append the `AGENTS.md` snippet on that page. Listed on the [official MCP registry](https://registry.modelcontextprotocol.io) as `io.github.pipeshub-ai/mcp` and on [Cursor Directory](https://cursor.directory/plugins/mcp-server-3) as PipesHub. The listing files (`plugin.json`, `mcp.json`) default MCP to `http://localhost:3000/mcp` (Docker). Change the URL for a company instance; they contain no secrets. Contributors working in this repository: read [AGENTS.md](./AGENTS.md).
|
|
8
8
|
>
|
|
9
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
10
|
>
|
|
@@ -12,7 +12,7 @@ PipesHub exposes a remote MCP endpoint over **Streamable HTTP** at `/mcp`. MCP C
|
|
|
12
12
|
|
|
13
13
|
## Prerequisites
|
|
14
14
|
|
|
15
|
-
- A running PipesHub instance (self-hosted or cloud)
|
|
15
|
+
- A running PipesHub instance (self-hosted or cloud). If they have none yet, the [local Docker demo](https://docs.pipeshub.com/for-agents-local-demo.md) playbook covers install and first-run — do not scaffold LangChain. First-run (account + LLM) is still in the browser; search 500s until an LLM is configured.
|
|
16
16
|
- An OAuth app created in PipesHub (see [Step 1](#step-1-create-an-oauth-app-in-pipeshub))
|
|
17
17
|
|
|
18
18
|
## Step 1: Create an OAuth App in PipesHub
|