HN user

justvugg

14 karma
Posts39
Comments15
View on HN
news.ycombinator.com 3mo ago

Show HN: CLI-use – turn any MCP server into a CLI in one command

justvugg
7pts1
news.ycombinator.com 4mo ago

Show HN: Dbcli – A Lightweight Database CLI Designed for AI Agents

justvugg
1pts2
news.ycombinator.com 4mo ago

Show HN: Dbcli – Database CLI Built for AI Agents

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: Wiredigg – Real-Time Network Analysis with ML and Ollama Support

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN:PolyMCP Python Tools with Autonomous Agents

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: EasyMemory – 100% local memory layer and MCP for LLMs

justvugg
2pts0
news.ycombinator.com 5mo ago

Show HN: LLM-use – cost-effective LLM orchestrator for agents

justvugg
2pts1
news.ycombinator.com 5mo ago

Show HN: PolyMCP – MCP Tools, Autonomous Agents, and Orchestration

justvugg
2pts0
news.ycombinator.com 5mo ago

Show HN: PolyClaw – Autonomous Docker-First MCP Agent for PolyMCP

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: PolyClaw – An Autonomous Docker-First MCP Agent for PolyMCP

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: PolyMCP – A framework for structuring and orchestrating MCP agents

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: PolyMCP – A framework for building and orchestrating MCP agents

justvugg
3pts2
news.ycombinator.com 5mo ago

Show HN: PolyMCP – Orchestrate AI agents across Python tools and MCP servers

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: PolyMCP – Run MCP Python Tools in WASM via Pyodide

justvugg
2pts0
news.ycombinator.com 5mo ago

Show HN: PolyMCP – Expose Python functions as MCP tools

justvugg
2pts0
news.ycombinator.com 5mo ago

Show HN: PolyMCP – Turn any Python function into AI-callable tools, instantly

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: PolyMCP – AI-Callable Python and TS Tools with Inspector and Apps

justvugg
2pts0
news.ycombinator.com 5mo ago

Show HN: LLM-use – orchestrate LLMs for AI agents like OpenClaw, cut costs

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: EasyMemory – Local-First Memory Layer for Chatbots and Agents

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: LLM-use – Open-source tool to route and orchestrate multi-LLM tasks

justvugg
2pts0
news.ycombinator.com 5mo ago

Show HN: Polymcp and Ollama for Simple Local and Cloud LLM Execution

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: PolyMCP – Expose Python/TS functions as MCP tools easily

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: PolyMCP – Expose Python/TS functions as MCP tools easily

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: PolyMCP – Expose Python and TypeScript Functions as MCP Tools

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: PolyMCP Skills – Scalable Tool Organization for MCP-Based AI Agents

justvugg
1pts2
news.ycombinator.com 5mo ago

Show HN:PolyMCP – from Server to WebAssembly from the Same Python Code

justvugg
1pts0
news.ycombinator.com 5mo ago

Show HN: Polymcp – Turn Any Python Function into an MCP Tool for AI Agents

justvugg
23pts7
news.ycombinator.com 6mo ago

Show HN: PolyMCP – Simplifying MCP Server Development and Agent Integration

justvugg
2pts0
news.ycombinator.com 6mo ago

Show HN: GONK – an ultra-lightweight, edge-native API gateway written in Go

justvugg
3pts0
news.ycombinator.com 6mo ago

Show HN: PolyMCP – open-source toolkit to expose MCP tools and run agents

justvugg
1pts2

Hi Thanks for the comment, The unified agent doesn’t execute untrusted code — it orchestrates. Side effects only happen at explicit execution boundaries (remote tools or the CodeAgent). The CodeAgent is sandboxed in Docker; the planner/router isn’t, because it never executes arbitrary code. Least-privilege and auditing are enforced at the execution boundary, not per function. Do you have any suggestions for making PolyMCP better?

Hi thanks for the comment, I’m not trying to replace FastMCP (or anything else), and I’m not really comparing on the “basic MCP server” use case.

PolyMCP, beyond creating MCP servers over HTTP and stdio, WASM (Pyodide) bundle to run tools in the browser/edge with an “MCP-style” tool interface,provides unified agent/orchestration across multiple MCP servers, plus an Inspector UI and production guardrails (budgets, logging, redaction, allowlists, retries).

The goal is to be a single, end-to-end toolkit for developers: tool exposure + debugging + governance + orchestration.

[dead] 7 months ago

Hi HN,

I’ve been working on Polymcp, an open-source toolkit for building MCP agents that can discover, inspect, and orchestrate tools across multiple MCP servers (HTTP, stdio, or in-process).

A few things that might be interesting to this crowd: • Tool Inspector: a built-in inspector that lets you see exactly which tools are exposed by each MCP server, their schemas, inputs/outputs, and how the agent is reasoning about using them. It’s meant to make MCP setups debuggable instead of opaque. • Unified agent: one agent can talk to multiple MCP servers at once (local Python tools, remote HTTP servers, stdio MCPs like Playwright, etc.). • Code-mode execution: instead of iterative “LLM → tool → LLM → tool” loops, the agent can generate a single Python script that executes the full tool plan. This is faster, cheaper in tokens, and easier to audit. • Minimal boilerplate for servers: you can expose plain Python functions as MCP tools with almost no glue code. • CLI + registry: manage MCP servers, configs, and agents from the CLI; servers can be added/removed without touching agent code.

The goal is to make MCP setups feel more like a composable systems tool than a black-box agent framework.

Repo: https://github.com/poly-mcp/Polymcp PyPI: https://pypi.org/project/polymcp/

I’d love feedback, especially from people already experimenting with MCP, inspectors, or multi-tool agents.

[dead] 7 months ago

Hi HN,

I’ve released an update to PolyMCP, a Python framework for interacting with MCP servers using custom agents.

A common issue in MCP projects is that too many tools get loaded at once, wasting tokens and confusing agents. This update fixes that at a structural level.

What’s new (Python-only for now): • Skills system: tools are grouped into skills and loaded only when relevant to a request • Lower token usage and better accuracy thanks to smaller tool contexts • More ways to run MCP servers in Python: beyond HTTP, you can now use stdio and WASM

PolyMCP aims to make MCP usage simpler, modular, and closer to real developer workflows.

Feedback, critiques, or ideas for improvement are very welcome!

Hi everyone,

I’m excited to share PolyMCP, a toolkit for creating MCP servers and agents that can call them. It works in Python via HTTP, stdio, or in-process for zero-latency calls, and supports almost any model.

There’s also PolyMCP-TS, a TypeScript version, so everything you can do in Python can now run in TypeScript as well.

PolyMCP makes it easy to build modular, agent-driven architectures without having to write a lot of glue code.

Feedback, suggestions, or bug reports are very welcome!

Hi, thanks for the question! The project works exclusively through official APIs for interacting with models like ChatGPT and Claude. It requires API access with valid keys and does not support non-API usage like logging into ChatGPT Plus via the web interface or similar methods.

If you want to use it, you’ll need to have API credentials from the providers.

Feel free to ask if you want more details!