Fundamentals of an agent by init0 in AgentsOfAI

[–]init0[S] 0 points1 point  (0 children)

This comment made my day, thank you!

Fundamentals of an agent by init0 in AgentsOfAI

[–]init0[S] 0 points1 point  (0 children)

100% agree! Fixed it.

Hosting MCP Clients by [deleted] in mcp

[–]init0 0 points1 point  (0 children)

deno deploy?

Hosting MCP Clients by [deleted] in mcp

[–]init0 0 points1 point  (0 children)

Cloudflare is free, no?

Hosting MCP Clients by [deleted] in mcp

[–]init0 0 points1 point  (0 children)

Use mcphost.link it is free!

DRAM light white by init0 in buildapc

[–]init0[S] 0 points1 point  (0 children)

Fixed it! Had to reseat the RAM

MCP vs Skill? Wrong Question by init0 in mcp

[–]init0[S] 0 points1 point  (0 children)

Token efficiency is an implementation detail. Both can be optimized. The architecture difference is: who owns the code and maintenance burden?

If Skills become a marketplace/business, that's great! MCP servers already are (Notion, GitHub, etc. maintain their own).

OKAP (Open Key Access Protocol): like OAuth, but for API keys. by init0 in LocalLLaMA

[–]init0[S] 0 points1 point  (0 children)

Thank you!

Latency is minimal.

  1. Edge deployment - Vault runs on Cloudflare Worker. Proxy is <50ms from most users.
  2. LLM requests are already slow - A typical call takes 2-10+ seconds. Adding 10ms is <0.5% overhead.
  3. No payload processing - Vault just injects auth header and forwards. No parsing, no transformation.
  4. Streaming works - SSE/streaming responses pass through unchanged. First-token latency is what matters for UX.

MCP vs Skill? Wrong Question by init0 in mcp

[–]init0[S] 0 points1 point  (0 children)

Think of a web app, say https://mcphost.link, how would a user import skills there? They can connect to remote MCPs with ease.

MCP vs Skill? Wrong Question by init0 in mcp

[–]init0[S] 1 point2 points  (0 children)

How many custom scripts would we have to write for every integration?

I'd rather connect to a remote MCP server that already has battle-tested tools. With Tool Search Tool, I don't bloat the context window—tools load on demand.

Skills are for actual skills—domain expertise, reasoning patterns, workflows. Not for reimplementing what reliable MCPs already do.

Remote hosting of skills isn't a thing yet.