logoalt Hacker News

notatoadtoday at 3:54 PM6 repliesview on HN

it's not easier for agents to work with. it's easier for organizations to work with.

for agents, they're essentially the same thing - remote endpoints, and instructions on how to call those endpoints. what MCP brings is centralized updating and distribution of the instructions, and a promise that the skill and the REST api won't be out of sync with each other.

the one thing that skill.md+REST doesn't solve is how you get that skill.md to somebody else's computer, and how you ship an update to somebody else's computer once they've got a copy of the skill. if that's a problem you need to solve, you can either start inventing skill.md distribution protocols, or you can just use MCP.


Replies

esalmantoday at 5:21 PM

> it's easier for organizations to work with.

I can see that.

I am developing my first custom agents. I am finding that if I offload some workflow to another agent (e.g. Claude Code), the simplest way to control what it can or cannot do is via an MCP server (which only lets it access tools that I develop/approve myself). I do need that control in the corporate environment.

Maybe there are easier ways to do it, just learning and exploring now.

jonathanhefnertoday at 7:02 PM

No need to invent skill.md distribution protocols. Use `/.well-known/agent-skills/index.json` -- see https://github.com/agentskills/agentskills/pull/254.

It's already in use in several places (e.g., https://www.mintlify.com/docs/ai/skillmd#skills-discovery-en...) and is supported by `npx skills add`.

AznHisokatoday at 4:54 PM

Maybe I just need more patience, but I took a look at some tools that have MCPs, and their "setup guide" on how to start using the MCP server really gave me brain damage. Is this really easier to work with?

show 1 reply
skybriantoday at 5:00 PM

It seems like organizations will mostly want remote access via http and the other flavors of MCP aren’t so useful? Although, I suppose if you install an app locally, it might have an MCP interface.

show 1 reply
arccytoday at 5:34 PM

That would be /llms.txt https://llmstxt.org/

boredumbtoday at 4:18 PM

How is distributing a markdown file the bottleneck?

show 3 replies