@portofcontext/pctx 0.1.1 → 0.1.2
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 +9 -2
- package/README.md +5 -4
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [
|
|
8
|
+
## [UNRELEASED] - YYYY-MM-DD
|
|
9
|
+
|
|
10
|
+
## [0.1.2] - 2025-12-10
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Synced deno runtime op stubs and JS config interfaces to match dev, supporting auth in built CLI.
|
|
9
15
|
|
|
10
16
|
## [0.1.1] - 2025-11-10
|
|
11
17
|
|
|
@@ -31,6 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
31
37
|
|
|
32
38
|
- Initial public release
|
|
33
39
|
|
|
34
|
-
[Unreleased]: https://github.com/portofcontext/pctx/compare/v0.1.
|
|
40
|
+
[Unreleased]: https://github.com/portofcontext/pctx/compare/v0.1.2...HEAD
|
|
41
|
+
[0.1.2]: https://github.com/portofcontext/pctx/compare/v0.1.2
|
|
35
42
|
[0.1.1]: https://github.com/portofcontext/pctx/compare/v0.1.1
|
|
36
43
|
[0.1.0]: https://github.com/portofcontext/pctx/releases/tag/v0.1.0
|
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ The open source framework to connect AI agents to tools and services with [code
|
|
|
17
17
|
|
|
18
18
|
</div>
|
|
19
19
|
|
|
20
|
-
##
|
|
20
|
+
## Install
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
23
|
# Homebrew
|
|
@@ -26,7 +26,8 @@ brew install portofcontext/tap/pctx
|
|
|
26
26
|
# Curl
|
|
27
27
|
curl --proto '=https' --tlsv1.2 -LsSf https://raw.githubusercontent.com/portofcontext/pctx/main/install.sh | sh
|
|
28
28
|
|
|
29
|
-
#
|
|
29
|
+
# NPM
|
|
30
|
+
npm i -g @portofcontext/pctx
|
|
30
31
|
```
|
|
31
32
|
|
|
32
33
|
## Quick Start
|
|
@@ -47,7 +48,7 @@ For complete CLI documentation, see [CLI.md](docs/CLI.md).
|
|
|
47
48
|
|
|
48
49
|
## What is pctx?
|
|
49
50
|
|
|
50
|
-
`pctx` sits between AI agents and MCP servers. It aggregates multiple upstream MCP servers, handles authentication, and exposes tools through a unified Code Mode interface. Instead of agents managing connections to individual MCP servers, they connect once to pctx.
|
|
51
|
+
`pctx` sits between AI agents and MCP servers. It aggregates multiple upstream MCP servers, handles authentication, and exposes tools through a unified [Code Mode](#what-is-code-mode) interface. Instead of agents managing connections to individual MCP servers, they connect once to pctx.
|
|
51
52
|
|
|
52
53
|
## What is Code Mode?
|
|
53
54
|
|
|
@@ -120,7 +121,7 @@ console.log(`Found ${orders.length} orders`);
|
|
|
120
121
|
|
|
121
122
|
- LLM generated code runs in an isolated [Deno](https://deno.com) sandbox that can only access the network hosts specified in the configuration file.
|
|
122
123
|
- No filesystem, environment, network (beyond allowed hosts), or system access.
|
|
123
|
-
- MCP clients are authenticated. LLMs
|
|
124
|
+
- MCP clients are authenticated in pctx. LLMs can never see your auth.
|
|
124
125
|
|
|
125
126
|
|
|
126
127
|
## Learn More
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"hasInstallScript": true,
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"name": "@portofcontext/pctx",
|
|
27
|
-
"version": "0.1.
|
|
27
|
+
"version": "0.1.2"
|
|
28
28
|
},
|
|
29
29
|
"node_modules/@isaacs/balanced-match": {
|
|
30
30
|
"engines": {
|
|
@@ -897,5 +897,5 @@
|
|
|
897
897
|
}
|
|
898
898
|
},
|
|
899
899
|
"requires": true,
|
|
900
|
-
"version": "0.1.
|
|
900
|
+
"version": "0.1.2"
|
|
901
901
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/portofcontext/pctx/releases/download/v0.1.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/portofcontext/pctx/releases/download/v0.1.2",
|
|
3
3
|
"bin": {
|
|
4
4
|
"generate-cli-docs": "run-generate-cli-docs.js",
|
|
5
5
|
"pctx": "run-pctx.js"
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"zipExt": ".tar.gz"
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
|
-
"version": "0.1.
|
|
79
|
+
"version": "0.1.2",
|
|
80
80
|
"volta": {
|
|
81
81
|
"node": "18.14.1",
|
|
82
82
|
"npm": "9.5.0"
|