Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
MCP (Model Context Protocol) integration for TanStack Start mcp-tanstack-start MCP (Model Context Protocol) integration for $1. Build AI-powered tools that can be called by LLMs using the standardized MCP protocol. Implements the $1. Installation or with your preferred package manager: Quick Start Get up and running with a single file. Here's a complete MCP server with tools in one API route: That's it! Your MCP server is now live at /api/mcp. **Note:** We use lowercase all d Published capability contract available. No trust telemetry is available yet. 2 GitHub stars reported by the source. Last updated 2/24/2026.
Freshness
Last checked 2/22/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
mcp-tanstack-start is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.
Evidence Sources Checked
editorial-content, capability-contract, runtime-metrics, public facts pack
MCP (Model Context Protocol) integration for TanStack Start mcp-tanstack-start MCP (Model Context Protocol) integration for $1. Build AI-powered tools that can be called by LLMs using the standardized MCP protocol. Implements the $1. Installation or with your preferred package manager: Quick Start Get up and running with a single file. Here's a complete MCP server with tools in one API route: That's it! Your MCP server is now live at /api/mcp. **Note:** We use lowercase all d
Public facts
7
Change events
1
Artifacts
0
Freshness
Feb 22, 2026
Published capability contract available. No trust telemetry is available yet. 2 GitHub stars reported by the source. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 22, 2026
Vendor
Codyde
Artifacts
0
Benchmarks
0
Last release
0.4.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Published capability contract available. No trust telemetry is available yet. 2 GitHub stars reported by the source. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/codyde/mcp-tanstack-start.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Codyde
Protocol compatibility
MCP
Auth modes
mcp, api_key
Machine-readable schemas
OpenAPI or schema references published
Adoption signal
2 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
bash
npm install mcp-tanstack-start @modelcontextprotocol/sdk zod
bash
pnpm add mcp-tanstack-start @modelcontextprotocol/sdk zod yarn add mcp-tanstack-start @modelcontextprotocol/sdk zod
typescript
// src/routes/api/mcp.ts
import { createFileRoute } from '@tanstack/react-router'
import { createMcpServer, defineTool } from 'mcp-tanstack-start'
import { z } from 'zod'
// Define a tool
const echoTool = defineTool({
name: 'echo',
description: 'Echo back a message',
parameters: z.object({
message: z.string().describe('The message to echo back'),
}),
execute: async ({ message }) => {
return `You said: ${message}`
},
})
// Create the MCP server
const mcp = createMcpServer({
name: 'my-tanstack-app',
version: '1.0.0',
instructions: `This is my TanStack Start app with MCP tools.
You can use the available tools to interact with the application.`,
tools: [echoTool],
})
// Wire up all HTTP methods with a single handler
export const Route = createFileRoute('/api/mcp')({
server: {
handlers: {
all: async ({ request }) => mcp.handleRequest(request),
} as Record<string, (ctx: { request: Request }) => Promise<Response>>,
},
})typescript
// src/routes/api/mcp.ts
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/api/mcp')({
server: {
handlers: {
all: async ({ request }) => mcp.handleRequest(request),
} as Record<string, (ctx: { request: Request }) => Promise<Response>>,
},
})typescript
// src/routes/api/mcp.ts
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/api/mcp')({
server: {
handlers: {
GET: async ({ request }) => mcp.handleRequest(request),
POST: async ({ request }) => mcp.handleRequest(request),
DELETE: async ({ request }) => mcp.handleRequest(request),
},
},
})typescript
const mcp = createMcpServer({
name: 'my-tanstack-app', // Server name
version: '1.0.0', // Server version
instructions: `Optional instructions for AI assistants about how to use your tools.`,
tools: [echoTool], // Array of tools
})Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
MCP (Model Context Protocol) integration for TanStack Start mcp-tanstack-start MCP (Model Context Protocol) integration for $1. Build AI-powered tools that can be called by LLMs using the standardized MCP protocol. Implements the $1. Installation or with your preferred package manager: Quick Start Get up and running with a single file. Here's a complete MCP server with tools in one API route: That's it! Your MCP server is now live at /api/mcp. **Note:** We use lowercase all d
MCP (Model Context Protocol) integration for TanStack Start. Build AI-powered tools that can be called by LLMs using the standardized MCP protocol.
Implements the MCP 2025-06-18 Streamable HTTP transport specification.
npm install mcp-tanstack-start @modelcontextprotocol/sdk zod
or with your preferred package manager:
pnpm add mcp-tanstack-start @modelcontextprotocol/sdk zod
yarn add mcp-tanstack-start @modelcontextprotocol/sdk zod
Get up and running with a single file. Here's a complete MCP server with tools in one API route:
// src/routes/api/mcp.ts
import { createFileRoute } from '@tanstack/react-router'
import { createMcpServer, defineTool } from 'mcp-tanstack-start'
import { z } from 'zod'
// Define a tool
const echoTool = defineTool({
name: 'echo',
description: 'Echo back a message',
parameters: z.object({
message: z.string().describe('The message to echo back'),
}),
execute: async ({ message }) => {
return `You said: ${message}`
},
})
// Create the MCP server
const mcp = createMcpServer({
name: 'my-tanstack-app',
version: '1.0.0',
instructions: `This is my TanStack Start app with MCP tools.
You can use the available tools to interact with the application.`,
tools: [echoTool],
})
// Wire up all HTTP methods with a single handler
export const Route = createFileRoute('/api/mcp')({
server: {
handlers: {
all: async ({ request }) => mcp.handleRequest(request),
} as Record<string, (ctx: { request: Request }) => Promise<Response>>,
},
})
That's it! Your MCP server is now live at /api/mcp.
Note: We use lowercase
alldue to a case-sensitivity quirk in TanStack Start's handler lookup. The type assertion works around a mismatch between TypeScript types (which expect uppercase) and runtime behavior (which expects lowercase).
The API route is where your MCP server lives. It handles:
The simplest approach uses a single all handler:
// src/routes/api/mcp.ts
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/api/mcp')({
server: {
handlers: {
all: async ({ request }) => mcp.handleRequest(request),
} as Record<string, (ctx: { request: Request }) => Promise<Response>>,
},
})
If you prefer to be explicit about which methods your API supports, you can define each handler separately:
// src/routes/api/mcp.ts
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/api/mcp')({
server: {
handlers: {
GET: async ({ request }) => mcp.handleRequest(request),
POST: async ({ request }) => mcp.handleRequest(request),
DELETE: async ({ request }) => mcp.handleRequest(request),
},
},
})
Both approaches work identically - choose whichever style you prefer.
The MCP server manages your tools and handles the protocol communication:
const mcp = createMcpServer({
name: 'my-tanstack-app', // Server name
version: '1.0.0', // Server version
instructions: `Optional instructions for AI assistants about how to use your tools.`,
tools: [echoTool], // Array of tools
})
Tools are the functions that LLMs can call. Each tool has a name, description, parameters (defined with Zod), and an execute function:
import { defineTool } from 'mcp-tanstack-start'
import { z } from 'zod'
const echoTool = defineTool({
name: 'echo',
description: 'Echo back a message',
parameters: z.object({
message: z.string().describe('The message to echo back'),
}),
execute: async ({ message }) => {
return `You said: ${message}`
},
})
The parameters object uses Zod schemas for type-safe validation. The execute function receives the validated parameters and returns a string response.
By default, the server only accepts requests from localhost origins to prevent DNS rebinding attacks. Configure allowed origins for production:
const mcp = createMcpServer({
name: 'my-app',
version: '1.0.0',
tools: [...],
transport: {
allowedOrigins: [
'https://my-app.com',
'https://api.my-app.com',
],
},
})
⚠️ Warning: Setting
allowedOrigins: ["*"]disables Origin validation entirely. This is NOT recommended for production deployments.
Protect your MCP endpoint with authentication:
// src/routes/api/mcp.ts
import { createFileRoute } from '@tanstack/react-router'
import { withMcpAuth } from 'mcp-tanstack-start'
import { mcp } from '../../mcp'
import { verifyJWT } from '../../lib/auth'
const authenticatedHandler = withMcpAuth(
async (request, auth) => {
return mcp.handleRequest(request, { auth })
},
async (request) => {
const token = request.headers.get('Authorization')?.replace('Bearer ', '')
if (!token) return null
try {
const claims = await verifyJWT(token)
return { token, claims }
} catch {
return null
}
}
)
export const Route = createFileRoute('/api/mcp')({
server: {
handlers: {
all: async ({ request }) => authenticatedHandler(request),
} as Record<string, (ctx: { request: Request }) => Promise<Response>>,
},
})
Access auth in tools:
const userDataTool = defineTool({
name: 'get_user_data',
description: 'Get data for the authenticated user',
parameters: z.object({}),
execute: async (params, context) => {
const userId = context.auth?.claims?.sub
if (!userId) {
return { content: [{ type: 'text', text: 'Not authenticated' }], isError: true }
}
const userData = await fetchUserData(userId)
return JSON.stringify(userData)
},
})
createMcpServer(config)Creates an MCP server instance.
const mcp = createMcpServer({
name: string, // Server name
version: string, // Server version
tools?: ToolDefinition[], // Array of tools
instructions?: string, // Optional instructions for AI
transport?: { // Transport configuration
stateful?: boolean, // Enable stateful sessions (default: false)
sessionStore?: SessionStore, // Custom session store (for stateful mode)
allowedOrigins?: string[], // Allowed origins for CORS/DNS rebinding protection
sessionTimeout?: number, // Session timeout in ms (default: 1 hour)
requestTimeout?: number, // Request timeout in ms (default: 30 seconds)
maxBodySize?: number, // Max request body size (default: 1MB)
enableJsonResponse?: boolean, // Use JSON instead of SSE for responses
enableResumability?: boolean, // Enable SSE event IDs for resumability
}
})
// Returns
mcp.handleRequest(request: Request, options?: { auth?, signal? }): Promise<Response>
mcp.addTool(tool: ToolDefinition): void
mcp.getInfo(): { name: string; version: string }
Stateless Mode (Default) - Works everywhere: serverless, edge, containers, and distributed environments. If a session is not found, requests are processed gracefully without errors. Ideal for Vercel, Netlify, Railway, Cloudflare Workers, etc.
Stateful Mode - Enables persistent sessions for SSE push notifications. Requires either in-memory storage (single instance only) or a custom session store for distributed deployments.
// Stateless (default) - works on serverless/edge/distributed
const mcp = createMcpServer({
name: 'my-app',
version: '1.0.0',
tools: [...],
});
// Stateful with in-memory sessions (single instance only)
const mcp = createMcpServer({
name: 'my-app',
version: '1.0.0',
tools: [...],
transport: {
stateful: true,
sessionTimeout: 3600000, // 1 hour
}
});
// Stateful with custom session store (distributed deployments)
const mcp = createMcpServer({
name: 'my-app',
version: '1.0.0',
tools: [...],
transport: {
stateful: true,
sessionStore: myRedisSessionStore,
}
});
Implement the SessionStore interface to persist sessions in Redis, DynamoDB, or any other storage:
import type { SessionStore, SessionData } from 'mcp-tanstack-start';
const redisSessionStore: SessionStore = {
async get(id: string): Promise<SessionData | null> {
const data = await redis.get(`mcp:session:${id}`);
return data ? JSON.parse(data) : null;
},
async set(id: string, session: SessionData, ttlMs: number): Promise<void> {
await redis.set(`mcp:session:${id}`, JSON.stringify(session), 'PX', ttlMs);
},
async delete(id: string): Promise<void> {
await redis.del(`mcp:session:${id}`);
},
};
| Option | Default | Description |
|--------|---------|-------------|
| stateful | false | Enable stateful session mode. When false, runs in stateless mode suitable for serverless/edge/distributed. |
| sessionStore | In-memory | Custom session store (only used when stateful: true). |
| allowedOrigins | ["http://localhost", ...] | Origins allowed for CORS. Set to ["*"] to allow all (not recommended for production). |
| sessionTimeout | 3600000 (1 hour) | How long before inactive sessions are cleaned up (stateful mode only). |
| requestTimeout | 30000 (30 sec) | Timeout for individual requests. |
| maxBodySize | 1048576 (1MB) | Maximum request body size in bytes. |
| enableJsonResponse | false | Return JSON instead of SSE for POST responses. |
| enableResumability | true | Include SSE event IDs for client reconnection support (stateful mode only). |
defineTool(config)Defines a tool with type-safe parameters.
defineTool({
name: string,
description: string,
parameters: ZodSchema,
execute: (params, context) => Promise<string | Content[] | ToolResult>
})
withMcpAuth(handler, verifyToken, options?)Wraps a handler with authentication.
withMcpAuth(handler, verifyToken, {
realm?: string, // WWW-Authenticate realm
requiredScopes?: string[], // Required scopes
allowUnauthenticated?: boolean,
})
text(content: string) - Create text contentimage(data: string, mimeType: string) - Create image content (base64)resource(uri: string, options?) - Create embedded resourceImplements the MCP 2025-06-18 Streamable HTTP transport:
| Method | Purpose | |--------|---------| | POST | JSON-RPC requests (single message per request, no batches) | | GET | SSE stream for server-to-client notifications (stateful mode only) | | DELETE | Session termination |
Last-Event-ID header support (stateful mode)MCP-Protocol-Version header with fallback to 2025-03-26initialize, initialized, tools/list, tools/call, ping
Clients must include:
Accept: application/json, text/event-stream (both required)Content-Type: application/jsonMcp-Session-Id: <session-id> (after initialization)MCP-Protocol-Version: <version> (recommended)Check out the example blog implementation to see mcp-tanstack-start in action with:
MIT
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
mcp, api_key
Streaming
Yes
Data region
global
Protocol support
Requires: mcp, lang:typescript, streaming
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "ready",
"authModes": [
"mcp",
"api_key"
],
"requires": [
"mcp",
"lang:typescript",
"streaming"
],
"forbidden": [],
"supportsMcp": true,
"supportsA2a": false,
"supportsStreaming": true,
"inputSchemaRef": "https://github.com/codyde/mcp-tanstack-start#input",
"outputSchemaRef": "https://github.com/codyde/mcp-tanstack-start#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:46:52.543Z",
"sourceUpdatedAt": "2026-02-24T19:46:52.543Z",
"freshnessSeconds": 4428680
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T01:58:13.201Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "supported",
"confidenceSource": "contract",
"notes": "Confirmed by capability contract"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "model-context-protocol",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "tanstack",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "tanstack-start",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "ai",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "llm",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "tools",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|supported|contract capability:mcp|supported|profile capability:model-context-protocol|supported|profile capability:tanstack|supported|profile capability:tanstack-start|supported|profile capability:ai|supported|profile capability:llm|supported|profile capability:tools|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:52.543Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "mcp, api_key",
"href": "https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:52.543Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/codyde/mcp-tanstack-start#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:52.543Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Codyde",
"href": "https://github.com/codyde/mcp-tanstack-start#readme",
"sourceUrl": "https://github.com/codyde/mcp-tanstack-start#readme",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "2 GitHub stars",
"href": "https://github.com/codyde/mcp-tanstack-start",
"sourceUrl": "https://github.com/codyde/mcp-tanstack-start",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-codyde-mcp-tanstack-start/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to mcp-tanstack-start and adjacent AI workflows.