Good evening. Here is what matters in AI today, and how to put it to work.
OpenAI's Jalapeño chip benchmarks and a wave of critical MCP security flaws together define today's sharpest engineering decisions.
~3 min read · last 12 hours
In today's issue
01
OpenAI's Jalapeño chip beats rivals on tokens per user and throughput per kilowatt
02
Apple's new desktop Macs are built with local AI development in mind
03
Chainlit MCP stdio transport allows unauthenticated remote code execution
04
Chainlit MCP SSE transport exposes internal network to unauthenticated access
05
DeepSeek MCP server exposes HTTP endpoint with no authentication
Main story
OpenAI's Jalapeño chip beats rivals on tokens per user and throughput per kilowatt
Benchmarked on SemiAnalysis InferenceX, OpenAI's in-house Jalapeño chip delivers more tokens per user and more output per kilowatt than current state-of-the-art alternatives.
Why it matters: If these numbers hold in production, teams running large inference workloads face a real make-vs-buy decision: vertical integration on custom silicon is no longer just a hyperscaler advantage.
What to watch next: Watch whether independent labs can replicate the Jalapeño benchmark results across diverse workload shapes, since a single throughput-per-kilowatt figure on one benchmark does not yet tell us how the chip performs on long-context or multimodal tasks.
We are seeing a clear pattern: organizations are moving inference off commodity cloud GPUs and onto purpose-built hardware, and today's OpenAI chip news plus Apple's AI-focused Mac refresh both underscore that the cost and speed of running models at scale is now a boardroom-level engineering decision.
Stability AI's total fundraising after its latest $76M round · TechCrunch
Watch · On the feeds
How to Manage Your Workspace With ChatGPT Work
OpenAI
Get Started with Open Model Routing | Nemotron Labs
NVIDIA Developer
The Signal
Two forces are colliding this week: the economics of inference are shifting fast as custom silicon claims measurable leads over commodity GPUs, while the MCP ecosystem is accumulating serious security debt at the same pace it is gaining adoption. For engineering leaders, the practical question is not whether to use these tools but whether your security review process is keeping up with how quickly MCP surfaces are being enabled in production. We see both themes as roadmap-forcing events, not background noise.
All the best, the KYFEX team
Quick hits
Custom silicon and inference economics
Apple's new desktop Macs are built with local AI development in mind
Apple's latest desktop refresh is explicitly designed for local AI workloads, including daisy-chaining multiple machines to scale model runs.
Why it matters: For teams that need private, on-premises inference without cloud egress costs, this hardware generation is worth a serious look before the next budget cycle.
Multiple critical and high-severity advisories dropped today against MCP-enabled deployments, and together they paint a consistent picture: MCP integrations are shipping faster than their security posture is being validated, and teams enabling these features in production need to act now.
Chainlit MCP stdio transport allows unauthenticated remote code execution
A critical vulnerability in Chainlit lets any unauthenticated caller execute arbitrary commands via the MCP stdio transport when MCP is enabled in config.
Why it matters: Any team that turned on MCP in Chainlit before v2.7.0 should treat this as an urgent patch: unauthenticated RCE in an agent framework is a worst-case exposure.
Chainlit MCP SSE transport exposes internal network to unauthenticated access
A separate high-severity SSRF flaw in Chainlit's MCP SSE and streamable-http transports allows unauthenticated callers to reach internal network resources.
Why it matters: SSRF combined with RCE in the same framework means the blast radius is wide: audit every Chainlit deployment for MCP config before assuming the default-off setting protects you.
DeepSeek MCP server exposes HTTP endpoint with no authentication
The self-hosted HTTP transport of the arikusi deepseek-mcp-server package calls its express app without an auth provider, leaving the POST /mcp route open to any network caller.
Why it matters: This is a recurring pattern across MCP server packages: authentication is being treated as optional rather than mandatory, and any self-hosted MCP endpoint should be audited immediately.
Audit your MCP deployment config for known vulnerability patterns
I am reviewing a deployment that uses an MCP-enabled framework (such as Chainlit or a self-hosted MCP server). Help me build a checklist of security controls to verify before going to production. Cover: authentication on every transport (stdio, SSE, HTTP), network exposure of MCP endpoints, input validation to prevent SSRF and command injection, default-off vs. default-on feature flags, and logging practices that avoid unbounded output. For each control, give me a one-line test I can run or a config line I can inspect.
Why it helps: With multiple critical MCP advisories dropping today, running this checklist against your own deployment takes under an hour and could prevent an unauthenticated RCE or SSRF exposure.
Before you ship it
The risk
MCP server packages are shipping with authentication as an afterthought, meaning a single misconfigured feature flag can expose agent execution endpoints to any network caller, including attackers who can trigger code execution or internal network access without credentials.
Do this
Before enabling any MCP transport in a framework, verify that an auth provider is explicitly configured and that the endpoint is not reachable from untrusted networks, then pin the framework version to one that has MCP disabled by default.
Ready to ship AI, not just read about it?
KYFEX designs and builds production AI for teams that need it working, not just demoed. Tell us what you're working on and we'll bring the engineering.