npm @mukundakatta/streamparse-mcpstdioMITupdated 10d ago
An MCP server that gives AI assistants the ability to parse partial / messy / truncated JSON.
What can you do with streamparse?
streamparse-mcp
An MCP server that gives AI assistants the ability to parse partial / messy / truncated JSON.
Built on top of @mukundakatta/streamparse.
Works with Claude Desktop, Cursor, Cline, Windsurf, Zed, and any other MCP client.
Tools exposed
parse_partial_json
Recover a JSON value from a possibly-truncated string. Always returns a valid value with synthetic closure of any open strings, arrays, or objects.
{
"text": "{\"type\":\"tool_use\",\"name\":\"edit_file\",\"input\":{\"path\":\"a/b.ts\",\"cont"
}
ā
{
"value": {
"type": "tool_use",
"name": "edit_file",
"input": { "path": "a/b.ts", "cont": null }
},
"complete": false,
"path": ["input", "cont"],
"bytes_consumed": 67,
"confidence": 0.65
}
extract_json_from_text
Strip prose, ```json fences, and comments around a JSON value embedded in
LLM output. Returns the first parseable value.
Sure, here you go:
```json
{ "answer": 42 }
Let me know!
ā `{ "answer": 42 }`
### `validate_json`
Strict-mode RFC 8259 validator. Returns `ok=true` and the parsed value on
success, or `ok=false` with a precise byte position and error message on
failure.
## Install
### Claude Desktop
Add to `claude_desktop_config.json`:
```json
{
"mcpServers": {
"streamparse": {
"command": "npx",
"args": ["-y", "@mukundakatta/streamparse-mcp"]
}
}
}
Cursor / Cline / Windsurf / Zed
Same shape, in the appropriate mcp.json for your client. Most clients
auto-discover via npx -y @mukundakatta/streamparse-mcp.
Local install
npm install -g @mukundakatta/streamparse-mcp
mcp-streamparse # listens on stdio
Why this matters
When an LLM is mid-tool-call and you need the assistant to reason about the
half-formed JSON it just wrote, no other tool gives a usable answer. Standard
JSON.parse throws. Regex extraction misses nested structure. This MCP server
gives Claude (or whichever model is driving) a real handle on partial JSON,
right where it lives.
License
MIT.
Install
Add streamparse to your client. Pick the one you use.
claude mcp add streamparse-mcp -- npx -y @mukundakatta/streamparse-mcpcodex mcp add streamparse-mcp -- npx -y @mukundakatta/streamparse-mcpamp mcp add streamparse-mcp -- npx -y @mukundakatta/streamparse-mcp{
"mcpServers": {
"streamparse-mcp": {
"command": "npx",
"args": [
"-y",
"@mukundakatta/streamparse-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"streamparse-mcp": {
"command": "npx",
"args": [
"-y",
"@mukundakatta/streamparse-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"streamparse-mcp","command":"npx","args":["-y","@mukundakatta/streamparse-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"streamparse-mcp": {
"command": "npx",
"args": [
"-y",
"@mukundakatta/streamparse-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"streamparse-mcp": {
"command": "npx",
"args": [
"-y",
"@mukundakatta/streamparse-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"streamparse-mcp": {
"command": "npx",
"args": [
"-y",
"@mukundakatta/streamparse-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"streamparse-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@mukundakatta/streamparse-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"streamparse-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@mukundakatta/streamparse-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @mukundakatta/streamparse-mcpRun `goose configure`, choose **Add Extension ā Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation18/25
- Maintenance19/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 3 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 1.0.1Latest | Apr 25, 2026 |