#stdio
Normalize pronouncing "stdio" as "ass tiddy AYO!"
January 19, 2026 at 10:07 PM
Gem | Stdio 2016
@g3mm.bsky.social
April 29, 2025 at 9:03 AM
Oops, pretend I wrote ‘Stdio 54’ 😂
December 21, 2024 at 3:11 AM
MCPサーバーが「起動しない」時に見るべきはstdio — 生のJSON-RPCを追うデバッグ手順 | JOINCLASS #zenn
https://zenn.dev/joinclass/articles/mcp-stdio-20260914220022-32061
MCPサーバーが「起動しない」時に見るべきはstdio — 生のJSON-RPCを追うデバッグ手順
zenn.dev
September 25, 2026 at 12:03 AM
Another important moment was rewriting cat for Plan 9 so I could eliminate the -u flag, which dmr had added because he (sensibly) wanted cat to use the new stdio library but needed to suppress the buffering sometimes.

No stdio, no buffering. Still fast.
July 14, 2025 at 1:43 AM
skills aren't great i think i should just move on to building stdio mcp servers
March 25, 2026 at 3:49 AM
#include
int main() {
printf("Hello World");
return 0;
}
January 21, 2024 at 6:51 AM
How I debug MCP STDIO servers:
February 4, 2025 at 12:34 PM
iswear i could feel my soul drain all throughou t hat showcase only for rgg stdio to put it back in my body thgank you rgg studio
June 6, 2025 at 11:12 PM
so I got my streamable HTTP server working only to discover that Claude Desktop only supports stdio 🫤

Fortunately, making a stdio wrapper was really easy (...for Cursor)
May 31, 2025 at 4:12 PM
listening to stdio by SND
#b3d #bnpr #pixelart
September 1, 2024 at 1:26 AM
Implemented this morning. I also fixed the missing --stdio flag. Hopefully, these PRs get merged soon 🙏

github.com/zed-extensio...
Add --stdio argument to Expert by default by PJUllrich · Pull Request #45 · zed-extensions/elixir
Closes #41
github.com
November 12, 2025 at 10:42 AM
imo MCP should support unix sockets for local stuff. localhost is still an open port on the machine. some of my MCPs are stdio only bc they're so dang powerful, I can't have 'em hanging on an open port of any kind. proper auth is a nightmare, so stdio it is for now
February 13, 2026 at 1:21 PM
💪 Zero Boilerplate #Java STDIO #MCP Servers with
@langchain4j.dev and @jbang.dev

You just need one #Java file.
JBang installed.
No build!

Then configure your custom MCP server to use with your favorite #AI #Agent harness, like #geminicli and friends!
February 11, 2026 at 3:22 PM
FYI we have an @e18e.dev MCP server!

you can use it remotely, or you can install it locally as a stdio server.

this lets your agent check your codebase for redundant dependencies, polyfills, etc.
e18e MCP server
The official e18e MCP server, advising agents on modern and performant best practices.
mcp.e18e.dev
July 21, 2026 at 10:31 AM
require('child_process').spawn('biome format', process.argv.slice(2), { stdio: 'inherit' });
January 28, 2025 at 4:06 PM
MCP's STDIO flaw exposes 200K+ AI servers to RCE. The protocol over-trusts AI clients with no input validation between LLM and MCP server. If you run MCP servers in production, audit your stdio transport now.

#MCP #AI #Security https://awesomeagents.ai/news/mcp-stdio-rce-design-flaw-200k-servers/
April 22, 2026 at 10:46 AM
#quarkus MCP server 1.0.0.Beta3 is out! With pagination support, stdio-sse-proxy dev tool and resource subscriptions... github.com/quarkiverse/...
Release 1.0.0.Beta3 · quarkiverse/quarkus-mcp-server
What's Changed Fix small type in index.adoc by @geoand in #112 Add pagination support by @mkouba in #113 Upgrade Quarkus to 3.18.3 by @mkouba in #114 Add stdio-sse-proxy dev tool by @mkouba in #11...
github.com
February 21, 2025 at 9:43 AM
I’m trying to create a cool logo for github.com/f/mcptools using ChatGPT / Sora, but haven’t come up with anything convincing yet.

If anyone can design a great one, I’ll happily replace the current logo with it! 😌
GitHub - f/mcptools: A command-line interface for interacting with MCP (Model Context Protocol) servers using both stdio and HTTP transport.
A command-line interface for interacting with MCP (Model Context Protocol) servers using both stdio and HTTP transport. - f/mcptools
github.com
April 7, 2025 at 5:48 PM
How to create an MCP server?

In less than a minute you can setup TMCP with your preferred validation library, authentication, SSE+HTTP+STDIO support, using Web Request/Response and even comes with an example server that you can update to your liking.

```
pnpm create tmcp
```

🧡

rcc.im/tmcp
August 2, 2025 at 8:26 AM
for folks willing to `cargo build` an mcp, here's a preview of "kaibo", my newest mcp server that puts an agent in your agent so you can get a second opinion. this one's in rust and subagents have a restricted kaish shell. please reply with feedback if it works for you

github.com/tobert/kaibo
GitHub - tobert/kaibo: 解剖 — a stdio MCP server that gives your coding agent grounded, cited second opinions from a team of diverse models.
解剖 — a stdio MCP server that gives your coding agent grounded, cited second opinions from a team of diverse models. - tobert/kaibo
github.com
June 15, 2026 at 12:34 AM
Just finished writing my first MCP server in Ruby - all it does is echo back whatever Claude Desktop sends.

It was trickier than expected to get it working over http (seems that stdio is the easy path - but that assumes stdio is exclusively available to MCP).

...it's strange to talk to your API.
May 13, 2025 at 12:25 PM
This would be awesome for .NET-based stdio MCP servers
May 22, 2025 at 9:55 AM
The vast majority of MCP servers today aren't actually servers 😱 They run as a child process and communicate over stdio, a bit awkward for distributed systems trying to use MCP.

Backend apps can now run existing stdio MCP servers in Lambda functions with this new library:
github.com/awslabs/run-...
April 15, 2025 at 6:02 PM
Let’s start with something basic like getting diagnostics. Not too much to say about this. Each API call like this is communicating over STDIO with the tsgo process. We'll see some details in a minute.
August 15, 2026 at 2:05 AM