frontmcp 1.5.7 → 1.6.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/README.md +72 -21
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -76,10 +76,12 @@ scoped [Providers / DI][docs-providers].
|
|
|
76
76
|
stateful / stateless [sessions][docs-server] (JWT or UUID transport IDs).
|
|
77
77
|
|
|
78
78
|
**Connect & operate** — [Streamable HTTP + SSE transport][docs-transport],
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
[
|
|
82
|
-
|
|
79
|
+
every [MCP protocol revision][docs-protocol] from `2024-11-05` through
|
|
80
|
+
`2026-07-28` on one endpoint, capability [discovery][docs-discovery],
|
|
81
|
+
[elicitation][docs-elicitation], [hooks][docs-hooks], HTTP-discoverable
|
|
82
|
+
[skills][docs-skills], [tool UI / MCP Apps][docs-ext-apps], an in-process
|
|
83
|
+
[Direct Client][docs-direct] (`connectOpenAI` / `connectClaude`), and
|
|
84
|
+
first-class [deployment][docs-deploy].
|
|
83
85
|
|
|
84
86
|
**Extend & tooling** — official [plugins][docs-plugins] (Cache, Remember, CodeCall,
|
|
85
87
|
Dashboard), the [OpenAPI adapter][docs-adapters], a [UI library][docs-ui] (HTML/React
|
|
@@ -90,18 +92,66 @@ widgets, SSR, MCP Bridge), an [E2E testing framework][docs-testing], and a
|
|
|
90
92
|
|
|
91
93
|
## Packages
|
|
92
94
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
|
99
|
-
|
|
|
100
|
-
| [
|
|
101
|
-
| [`@frontmcp/
|
|
102
|
-
| [`@frontmcp/
|
|
103
|
-
| [`@frontmcp/
|
|
104
|
-
|
|
95
|
+
You install `frontmcp` (the CLI) and `@frontmcp/sdk`. Everything else is either
|
|
96
|
+
pulled in for you or opt-in.
|
|
97
|
+
|
|
98
|
+
### Core
|
|
99
|
+
|
|
100
|
+
| Package | Description |
|
|
101
|
+
| ----------------------------------- | --------------------------------------------------------------- |
|
|
102
|
+
| [`frontmcp`](libs/cli) | The CLI — `create`, `init`, `dev`, `build`, `inspect`, `doctor` |
|
|
103
|
+
| [`@frontmcp/sdk`](libs/sdk) | Core framework — decorators, DI, flows, transport, MCP protocol |
|
|
104
|
+
| [`@frontmcp/auth`](libs/auth) | Authentication, OAuth, JWKS, DCR/CIMD, credential vault |
|
|
105
|
+
| [`@frontmcp/testing`](libs/testing) | E2E test framework with fixtures and matchers |
|
|
106
|
+
|
|
107
|
+
### Extend
|
|
108
|
+
|
|
109
|
+
| Package | Description |
|
|
110
|
+
| ----------------------------------------------- | ------------------------------------------------------------- |
|
|
111
|
+
| [`@frontmcp/plugins`](libs/plugins) | Plugin authoring toolkit + official plugin re-exports |
|
|
112
|
+
| [`@frontmcp/adapters`](libs/adapters) | OpenAPI adapter — generate tools from an OpenAPI spec |
|
|
113
|
+
| [`@frontmcp/skills`](libs/skills) | Curated SKILL.md catalog for scaffolding and `skills install` |
|
|
114
|
+
| [`@frontmcp/guard`](libs/guard) | Policy/guard rules for tool inputs and outputs |
|
|
115
|
+
| [`@frontmcp/observability`](libs/observability) | Structured logging, metrics, and tracing helpers |
|
|
116
|
+
|
|
117
|
+
### UI
|
|
118
|
+
|
|
119
|
+
| Package | Description |
|
|
120
|
+
| --------------------------------- | ----------------------------------------------------- |
|
|
121
|
+
| [`@frontmcp/react`](libs/react) | React hooks + client for talking to a FrontMCP server |
|
|
122
|
+
| [`@frontmcp/ui`](libs/ui) | React components, SSR renderers, MCP Bridge |
|
|
123
|
+
| [`@frontmcp/uipack`](libs/uipack) | React-free themes, build tools, platform adapters |
|
|
124
|
+
|
|
125
|
+
### Runtime & storage
|
|
126
|
+
|
|
127
|
+
| Package | Description |
|
|
128
|
+
| ------------------------------------------------- | -------------------------------------------------------------- |
|
|
129
|
+
| [`@frontmcp/edge`](libs/edge) | Run a server on Cloudflare Workers / V8 isolates from a config |
|
|
130
|
+
| [`@frontmcp/storage-sqlite`](libs/storage-sqlite) | SQLite-backed session, task, and elicitation stores |
|
|
131
|
+
| [`@frontmcp/nx`](libs/nx-plugin) | Nx generators and executors for FrontMCP workspaces |
|
|
132
|
+
|
|
133
|
+
### Internal
|
|
134
|
+
|
|
135
|
+
Published so the packages above resolve, but not intended for direct use:
|
|
136
|
+
|
|
137
|
+
| Package | Description |
|
|
138
|
+
| ------------------------------------- | ------------------------------------------------------------ |
|
|
139
|
+
| [`@frontmcp/protocol`](libs/protocol) | The single boundary to the upstream MCP SDK — protocol types |
|
|
140
|
+
| [`@frontmcp/di`](libs/di) | Dependency injection container |
|
|
141
|
+
| [`@frontmcp/utils`](libs/utils) | Shared utilities — naming, URI, crypto, FS |
|
|
142
|
+
| [`@frontmcp/lazy-zod`](libs/lazy-zod) | Lazily-loaded Zod wrapper that keeps cold starts small |
|
|
143
|
+
|
|
144
|
+
### Official plugins
|
|
145
|
+
|
|
146
|
+
| Package | Description |
|
|
147
|
+
| -------------------------------------------------------------------- | -------------------------------------------- |
|
|
148
|
+
| [`@frontmcp/plugin-cache`](plugins/plugin-cache) | Cache tool results with a TTL |
|
|
149
|
+
| [`@frontmcp/plugin-remember`](plugins/plugin-remember) | Per-session memory (`this.remember`) |
|
|
150
|
+
| [`@frontmcp/plugin-approval`](plugins/plugin-approval) | Human approval gates before a tool runs |
|
|
151
|
+
| [`@frontmcp/plugin-codecall`](plugins/plugin-codecall) | Let the model compose tool calls as code |
|
|
152
|
+
| [`@frontmcp/plugin-dashboard`](plugins/plugin-dashboard) | Built-in web dashboard |
|
|
153
|
+
| [`@frontmcp/plugin-feature-flags`](plugins/plugin-feature-flags) | Toggle tools and apps at runtime |
|
|
154
|
+
| [`@frontmcp/plugin-skilled-openapi`](plugins/plugin-skilled-openapi) | OpenAPI → skills + meta-tools for large APIs |
|
|
105
155
|
|
|
106
156
|
## Version Alignment
|
|
107
157
|
|
|
@@ -120,7 +170,7 @@ PRs welcome! See [CONTRIBUTING.md](./CONTRIBUTING.md) for workflow, coding stand
|
|
|
120
170
|
[docs-home]: https://docs.agentfront.dev/frontmcp 'FrontMCP Docs'
|
|
121
171
|
[docs-install]: https://docs.agentfront.dev/frontmcp/getting-started/installation 'Installation'
|
|
122
172
|
[docs-quickstart]: https://docs.agentfront.dev/frontmcp/getting-started/quickstart 'Quickstart'
|
|
123
|
-
[docs-sdk-ref]: https://docs.agentfront.dev/frontmcp/sdk-reference/overview 'SDK Reference'
|
|
173
|
+
[docs-sdk-ref]: https://docs.agentfront.dev/frontmcp/sdk-reference/decorators/overview 'SDK Reference'
|
|
124
174
|
[docs-server]: https://docs.agentfront.dev/frontmcp/servers/server 'The FrontMCP Server'
|
|
125
175
|
[docs-apps]: https://docs.agentfront.dev/frontmcp/servers/apps 'Apps'
|
|
126
176
|
[docs-tools]: https://docs.agentfront.dev/frontmcp/servers/tools 'Tools'
|
|
@@ -130,15 +180,16 @@ PRs welcome! See [CONTRIBUTING.md](./CONTRIBUTING.md) for workflow, coding stand
|
|
|
130
180
|
[docs-elicitation]: https://docs.agentfront.dev/frontmcp/servers/elicitation 'Elicitation'
|
|
131
181
|
[docs-skills]: https://docs.agentfront.dev/frontmcp/servers/skills 'Skills'
|
|
132
182
|
[docs-discovery]: https://docs.agentfront.dev/frontmcp/servers/discovery 'Discovery'
|
|
183
|
+
[docs-protocol]: https://docs.agentfront.dev/frontmcp/fundamentals/protocol-versions 'Protocol Versions'
|
|
133
184
|
[docs-auth]: https://docs.agentfront.dev/frontmcp/authentication/overview 'Authentication'
|
|
134
185
|
[docs-direct]: https://docs.agentfront.dev/frontmcp/deployment/direct-client 'Direct Client'
|
|
135
|
-
[docs-transport]: https://docs.agentfront.dev/frontmcp/deployment/transport 'Transport'
|
|
136
|
-
[docs-ext-apps]: https://docs.agentfront.dev/frontmcp/
|
|
137
|
-
[docs-hooks]: https://docs.agentfront.dev/frontmcp/
|
|
186
|
+
[docs-transport]: https://docs.agentfront.dev/frontmcp/deployment/transport-security 'Transport'
|
|
187
|
+
[docs-ext-apps]: https://docs.agentfront.dev/frontmcp/guides/building-tool-ui 'Tool UI / MCP Apps'
|
|
188
|
+
[docs-hooks]: https://docs.agentfront.dev/frontmcp/sdk-reference/decorators/hooks 'Hooks'
|
|
138
189
|
[docs-providers]: https://docs.agentfront.dev/frontmcp/extensibility/providers 'Providers'
|
|
139
190
|
[docs-plugins]: https://docs.agentfront.dev/frontmcp/plugins/overview 'Plugins'
|
|
140
191
|
[docs-adapters]: https://docs.agentfront.dev/frontmcp/adapters/overview 'Adapters'
|
|
141
192
|
[docs-testing]: https://docs.agentfront.dev/frontmcp/testing/overview 'Testing'
|
|
142
|
-
[docs-ui]: https://docs.agentfront.dev/frontmcp/
|
|
193
|
+
[docs-ui]: https://docs.agentfront.dev/frontmcp/react/overview 'React SDK'
|
|
143
194
|
[docs-deploy]: https://docs.agentfront.dev/frontmcp/deployment/local-dev-server 'Deployment'
|
|
144
195
|
[docs-production]: https://docs.agentfront.dev/frontmcp/deployment/production-build 'Production Build'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "frontmcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "FrontMCP command line interface",
|
|
5
5
|
"author": "AgentFront <info@agentfront.dev>",
|
|
6
6
|
"homepage": "https://docs.agentfront.dev",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@clack/prompts": "^0.10.0",
|
|
32
|
-
"@frontmcp/lazy-zod": "1.
|
|
33
|
-
"@frontmcp/skills": "1.
|
|
34
|
-
"@frontmcp/utils": "1.
|
|
32
|
+
"@frontmcp/lazy-zod": "1.6.0",
|
|
33
|
+
"@frontmcp/skills": "1.6.0",
|
|
34
|
+
"@frontmcp/utils": "1.6.0",
|
|
35
35
|
"@rspack/core": "^1.7.6",
|
|
36
36
|
"commander": "^13.0.0",
|
|
37
37
|
"esbuild": "^0.27.3",
|