@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 +7 -0
- package/LICENSE +21 -0
- package/README.md +70 -0
- package/SBOM.cdx.json +976 -0
- package/SECURITY.md +8 -0
- package/SUPPORT.md +5 -0
- package/assets/sourcey-mark.png +0 -0
- package/dist/bridge.d.ts +24 -0
- package/dist/bridge.d.ts.map +1 -0
- package/dist/bridge.js +105 -0
- package/dist/bridge.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +32 -0
- package/dist/index.js.map +1 -0
- package/dist/metadata.d.ts +77 -0
- package/dist/metadata.d.ts.map +1 -0
- package/dist/metadata.js +19 -0
- package/dist/metadata.js.map +1 -0
- package/distribution.json +24 -0
- package/package.json +72 -0
- package/server.json +31 -0
package/CHANGELOG.md
ADDED
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.
|