@sourcey/mcp-server 1.0.0

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/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # Changelog
2
+
3
+ ## 1.0.0
4
+
5
+ - Initial public stdio bridge to Sourcey's hosted MCP server.
6
+ - Dynamic hosted tool discovery with bounded connect, list, call, and shutdown behavior.
7
+ - Complete npm, MCP Registry, Glama, container, SBOM, and provenance metadata.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Sourcey
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,70 @@
1
+ # Sourcey MCP Server
2
+
3
+ Find evidence-backed startup credits and deals, inspect Agent Readiness report cards, and
4
+ prepare canonical service declarations from an agent client.
5
+
6
+ Sourcey is already a hosted Streamable HTTP MCP server:
7
+
8
+ ```text
9
+ https://mcp.sourcey.com/mcp
10
+ ```
11
+
12
+ Use that URL directly when your client supports remote MCP. This package is the thin stdio
13
+ bridge for clients that require a local command:
14
+
15
+ ```bash
16
+ npx -y @sourcey/mcp-server
17
+ ```
18
+
19
+ ```json
20
+ {
21
+ "mcpServers": {
22
+ "sourcey": {
23
+ "command": "npx",
24
+ "args": ["-y", "@sourcey/mcp-server"]
25
+ }
26
+ }
27
+ }
28
+ ```
29
+
30
+ The bridge downloads no Catalog and contains no tool implementations. At startup it negotiates
31
+ with the live Sourcey server, reads the current tool definitions once, and relays tool calls. A
32
+ Catalog or tool-description update therefore needs no package release.
33
+
34
+ ## What agents can do
35
+
36
+ - search and compare current startup credits, discounts, free tiers, programs, perks, and deals;
37
+ - inspect exact evidence, freshness, eligibility unknowns, and the signed change feed;
38
+ - search and inspect Agent Readiness report cards, including visible grades, five-stage findings,
39
+ blockers, remediations, methods, coverage, and freshness;
40
+ - prepare canonical Agent Readiness declaration YAML without assigning a grade; and
41
+ - discover Sourcey's paid HTTP services and x402 endpoint without paying inside MCP.
42
+
43
+ Call `tools/list` for the exact live schemas and descriptions. Sourcey's full agent guide is at
44
+ [sourcey.com/SKILL.md](https://sourcey.com/SKILL.md), its OpenAPI contract is at
45
+ [api.sourcey.com/openapi.yml](https://api.sourcey.com/openapi.yml), and x402 discovery is at
46
+ [api.sourcey.com/.well-known/x402](https://api.sourcey.com/.well-known/x402).
47
+
48
+ ## Boundary
49
+
50
+ This package performs only two actions: MCP over local stdio and MCP over the configured hosted
51
+ HTTP endpoint. It has no wallet, payment signer, credentials, telemetry, browser, background
52
+ daemon, mutable plugin, Catalog data, Agent Readiness executor, or submission authority. Paid
53
+ work remains on Sourcey's canonical HTTP API.
54
+
55
+ `SOURCEY_MCP_URL` may select another HTTPS Sourcey endpoint. Plain HTTP is accepted only for a
56
+ loopback test server. URLs containing credentials or fragments are refused.
57
+
58
+ ## Development
59
+
60
+ ```bash
61
+ npm ci
62
+ npm run verify
63
+ docker build -t sourcey-mcp .
64
+ ```
65
+
66
+ The verification path builds from clean output, checks all generated metadata, tests the real
67
+ HTTP-to-stdio boundary, creates an SBOM, installs the exact packed tarball into a blank project,
68
+ and repeats protocol introspection from those installed bytes.
69
+
70
+ MIT. See `SECURITY.md` and `SUPPORT.md` for reporting paths.