Skip to content

Commit 930d6a5

Browse files
committed
Add MCP_COOKIE_ENCRYPTION_KEY to Env context
1 parent a1439fd commit 930d6a5

File tree

13 files changed

+13
-0
lines changed

13 files changed

+13
-0
lines changed

apps/ai-gateway/src/ai-gateway.context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { AIGatewayMCP } from './ai-gateway.app'
33

44
export interface Env {
55
OAUTH_KV: KVNamespace
6+
MCP_COOKIE_ENCRYPTION_KEY: string
67
ENVIRONMENT: 'development' | 'staging' | 'production'
78
MCP_SERVER_NAME: string
89
MCP_SERVER_VERSION: string

apps/auditlogs/src/auditlogs.context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { AuditlogMCP } from './auditlogs.app'
33

44
export interface Env {
55
OAUTH_KV: KVNamespace
6+
MCP_COOKIE_ENCRYPTION_KEY: string
67
ENVIRONMENT: 'development' | 'staging' | 'production'
78
MCP_SERVER_NAME: string
89
MCP_SERVER_VERSION: string

apps/autorag/src/autorag.context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { AutoRAGMCP } from './autorag.app'
33

44
export interface Env {
55
OAUTH_KV: KVNamespace
6+
MCP_COOKIE_ENCRYPTION_KEY: string
67
ENVIRONMENT: 'development' | 'staging' | 'production'
78
MCP_SERVER_NAME: string
89
MCP_SERVER_VERSION: string

apps/browser-rendering/src/browser.context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { BrowserMCP } from './browser.app'
33

44
export interface Env {
55
OAUTH_KV: KVNamespace
6+
MCP_COOKIE_ENCRYPTION_KEY: string
67
ENVIRONMENT: 'development' | 'staging' | 'production'
78
MCP_SERVER_NAME: string
89
MCP_SERVER_VERSION: string

apps/dex-analysis/src/dex-analysis.context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type { WarpDiagReader } from './warp_diag_reader'
44

55
export interface Env {
66
OAUTH_KV: KVNamespace
7+
MCP_COOKIE_ENCRYPTION_KEY: string
78
ENVIRONMENT: 'development' | 'staging' | 'production'
89
MCP_SERVER_NAME: string
910
MCP_SERVER_VERSION: string

apps/dns-analytics/src/dns-analytics.context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { DNSAnalyticsMCP } from './dns-analytics.app'
33

44
export interface Env {
55
OAUTH_KV: KVNamespace
6+
MCP_COOKIE_ENCRYPTION_KEY: string
67
ENVIRONMENT: 'development' | 'staging' | 'production'
78
MCP_SERVER_NAME: string
89
MCP_SERVER_VERSION: string

apps/graphql/src/graphql.context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { GraphQLMCP, UserDetails } from './graphql.app'
22

33
export interface Env {
44
OAUTH_KV: KVNamespace
5+
MCP_COOKIE_ENCRYPTION_KEY: string
56
ENVIRONMENT: 'development' | 'staging' | 'production'
67
MCP_SERVER_NAME: string
78
MCP_SERVER_VERSION: string

apps/logpush/src/logpush.context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { LogsMCP } from './logpush.app'
33

44
export interface Env {
55
OAUTH_KV: KVNamespace
6+
MCP_COOKIE_ENCRYPTION_KEY: string
67
ENVIRONMENT: 'development' | 'staging' | 'production'
78
MCP_SERVER_NAME: string
89
MCP_SERVER_VERSION: string

apps/radar/src/radar.context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { RadarMCP, UserDetails } from './radar.app'
22

33
export interface Env {
44
OAUTH_KV: KVNamespace
5+
MCP_COOKIE_ENCRYPTION_KEY: string
56
ENVIRONMENT: 'development' | 'staging' | 'production'
67
MCP_SERVER_NAME: string
78
MCP_SERVER_VERSION: string

apps/sandbox-container/server/sandbox.server.context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { ContainerManager, ContainerMcpAgent, UserContainer } from './sandb
22

33
export interface Env {
44
OAUTH_KV: KVNamespace
5+
MCP_COOKIE_ENCRYPTION_KEY: string
56
CLOUDFLARE_CLIENT_ID: string
67
CLOUDFLARE_CLIENT_SECRET: string
78
ENVIRONMENT: 'dev'

0 commit comments

Comments
 (0)