feat: mcpctl v0.0.1 — first public release
Comprehensive MCP server management with kubectl-style CLI. Key features in this release: - Declarative YAML apply/get round-trip with project cloning support - Gated sessions with prompt intelligence for Claude - Interactive MCP console with traffic inspector - Persistent STDIO connections for containerized servers - RBAC with name-scoped bindings - Shell completions (fish + bash) auto-generated - Rate-limit retry with exponential backoff in apply - Project-scoped prompt management - Credential scrubbing from git history Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@mcpctl/shared",
|
||||
"version": "0.1.0",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./dist/index.js",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// Shared constants
|
||||
export const APP_NAME = 'mcpctl';
|
||||
export const APP_VERSION = '0.1.0';
|
||||
export const APP_VERSION = '0.0.1';
|
||||
export const DEFAULT_MCPD_URL = 'http://localhost:3000';
|
||||
export const DEFAULT_DB_PORT = 5432;
|
||||
|
||||
@@ -7,7 +7,7 @@ describe('shared package', () => {
|
||||
});
|
||||
|
||||
it('exports APP_VERSION constant', () => {
|
||||
expect(APP_VERSION).toBe('0.1.0');
|
||||
expect(APP_VERSION).toBe('0.0.1');
|
||||
});
|
||||
|
||||
it('exports DEFAULT_MCPD_URL constant', () => {
|
||||
|
||||
Reference in New Issue
Block a user