Загрузка видео...

Не удалось загрузить видео

На главную

Hermes Agent now has a built-in MCP Catalog

1,814,526 просмотров • 3 месяцев назад •via X (Twitter)

Комментарии: 33

Фото профиля Matt
Matt3 месяцев назад

Let’s fix this “NoneType” error all Codex users are facing…

Фото профиля Nous Research
Nous Research3 месяцев назад

OpenAI side issue which they already fixed, update Hermes.

Фото профиля YanXbt
YanXbt3 месяцев назад

Amazing update will need to update my Playbook

Фото профиля Noctus
Noctus3 месяцев назад

Which way?

Фото профиля Hermes Agent Tips
Hermes Agent Tips3 месяцев назад

Solidddd! n8n & Linear integrations through MCP catalog! @nousresearch cooking again? let’s goooooo

Фото профиля Madan Chaolla Park (MCP)
Madan Chaolla Park (MCP)3 месяцев назад

Next time let’s make a MCP swimwear catalog - more than happy to model again

Фото профиля Paul Lu
Paul Lu3 месяцев назад

The important part is not discovery alone. Once MCP servers become one-click installable, the catalog needs package-manager discipline: pinned versions, scoped permissions, health checks, evidence logs, and a fast rollback path when a tool behaves badly.

Фото профиля Addy Crezee | thehype. | /function1
Addy Crezee | thehype. | /function13 месяцев назад

the pace and precision of the way you ship guys is just wow. and what's really cool - updates are very user-friendly. we now starting to use hermes inside the ai radio, 24/7 ai news, run by ai

Фото профиля Mohammad Alshaalan
Mohammad Alshaalan3 месяцев назад

this is the other half of the trade. financial rails like base, robinhood, and visa are publishing mcp surfaces. an agent shipping with a built-in catalog means integration is no longer a partnership, it's a registry entry.

Фото профиля Fahis
Fahis3 месяцев назад

MCP catalog inside hermes agent is a very clean move. Discovery is half the battle with these tools.

Фото профиля DrSolana🇰🇷🇺🇸
DrSolana🇰🇷🇺🇸3 месяцев назад

Oh shiiiii ya’ll never stop shipping 🫡

Фото профиля tobi
tobi3 месяцев назад

already discovered and installed some MCPs two days ago W feature

Фото профиля Sai Kiran N
Sai Kiran N3 месяцев назад

Useful direction. MCP gets much more practical when discovery and install move inside the agent flow. The hard part after that is trust: what gets listed, what permissions it asks for, and how much tool surface the user exposes.

Фото профиля kiosa
kiosa3 месяцев назад

finally, a catalog where everything is actually reviewed before it ships

Фото профиля John
John3 месяцев назад

N8N and Linear!!!

Фото профиля Berry Straw 🍓
Berry Straw 🍓3 месяцев назад

When you say MCP this is what I think oof.

Фото профиля 🇮🇹 Emiliano Morgia - IL TRUMPISTA
🇮🇹 Emiliano Morgia - IL TRUMPISTA3 месяцев назад

MCP is everything. Can you please develop THE MCP server the world deserves?

Фото профиля Soroush Fadaeimanesh
Soroush Fadaeimanesh3 месяцев назад

built-in mcp catalog is the right move. discovery has been the actual bottleneck for adoption, not the protocol itself.

Фото профиля GBE
GBE3 месяцев назад

keep pushing

Фото профиля Percy Kintu
Percy Kintu3 месяцев назад

How can I get my mcp approved for the catalog ?

Фото профиля gz
gz3 месяцев назад

🚀 ship

Фото профиля Rohit
Rohit3 месяцев назад

How can I get my MCP server approved?

Фото профиля Kyle Willson
Kyle Willson3 месяцев назад

@ChrisCoffee hermes made n8n great again...

Фото профиля 0xVibly
0xVibly3 месяцев назад

nice, having the tool catalog inside the agent flow is the part that makes this actually usable

Фото профиля NuAgent
NuAgent3 месяцев назад

Nice. built-in catalog inside Hermes is a proper quality-of-life upgrade.

Фото профиля DeFi狙击手 | Ai🕊️
DeFi狙击手 | Ai🕊️3 месяцев назад

不亏是宇宙第一hermes agent

Фото профиля matt
matt3 месяцев назад

has this shipped yet I just updated and am not seeing it?

Фото профиля ✰ᵶ𝕧߄.ᐟ
✰ᵶ𝕧߄.ᐟ3 месяцев назад

We want hermes on ARM we want hermes on chinese videogame emulators

Фото профиля Michael Kerkhoff
Michael Kerkhoff3 месяцев назад

Built-in MCP catalog is a big usability unlock. Discovery is where most agent setups stall, so cutting that setup tax matters more than people think.

Фото профиля Aki
Aki3 месяцев назад

damn i love cli tho

Фото профиля Suryaprakash Pichaiya
Suryaprakash Pichaiya3 месяцев назад

Great things

Фото профиля KrysPtoooo (∞)
KrysPtoooo (∞)3 месяцев назад

Perfect 😭😭❤️

Фото профиля 波特
波特3 месяцев назад

The reviewer feedback loop is the key part here. Turning corrections into tests and system changes is what makes an agent feel deployable instead of just impressive in a demo.

Похожие видео

HERMES AGENT WITHOUT TOOLS IS A CHATBOT. WITH THEM IT BUILDS 3D TOWERS IN BLENDER, CHECKS STOCK PRICES, AND DRIVES VS CODE. tonbi JUST DROPPED THE FULL GUIDE. module 6 of his 10-part Hermes masterclass. best breakdown of the tool layer anyone has published. what you need to know: TOOLS vs SKILLS vs MCP skills = instructions (markdown, loaded into context) tools = callable functions (Python, agent emits call, Hermes executes) MCP = adapters to external systems (Blender, Stripe, Linear, Notion) every tool has three parts: → the function (does the real work) → the schema (what the model sees to decide when to call it) → the registry (makes the tool exist in the agent) the model never runs the function directly. it emits a structured request (tool name + JSON args). Hermes executes and returns the result. if the tool fails, the error goes back as JSON. the agent recovers instead of crashing. TOOL SETS CONTROL THE SURFACE hermes chat --tool-sets web # only web tools loaded. no files, no terminal. hermes chat --tool-sets safe # read-only: web search, vision, image gen. # no file writes. no terminal. no code execution. mid-session: /tools enable video /tools disable terminal or toggle in the dashboard: hermes dashboard → Skills → Tool Sets MCP SERVERS two transport types: STDIO (local subprocess) or HTTP (remote endpoint). add a server: hermes mcp # or ask: "add the MCP server for Blender" filter tools with include/exclude per server. keep only what you trust. security: → OAuth 2.1 PKCE (no long-lived tokens in config) → package scanning via api.osv. dev before launch → all MCP calls go through approval gates HERMES AS MCP SERVER hermes mcp serve exposes 10 tools via FastMCP. connect VS Code Copilot or Cursor to your running Hermes instance. BUILD YOUR OWN TOOL He built a stock price tool live: → Python function calling Finnhub API → schema with name, description, parameters → registered in tool_sets.py → agent calls it automatically when relevant any repeating API call in your workflow can become a native tool. full Hermes architecture deep-dive in the article 👇

YanXbt

32,680 просмотров • 3 месяцев назад

HERMES AGENT + OBSIDIAN IS A COMBINATION NOBODY IS TALKING ABOUT. Hermes ships with a bundled Obsidian skill. read, search, and create notes in your vault out of the box. why this combination is powerful: Hermes built-in memory is capped. MEMORY.md: 2,200 chars (~800 tokens). USER.md: 1,375 chars (~500 tokens). Obsidian vault has no cap. your agent writes research, session summaries, project context, and learned patterns as linked markdown notes. unlimited depth. the agent creates indexed notes by design. timestamps, backlinks, tags. every note connects to the knowledge graph. three ways to integrate: 1. BUNDLED OBSIDIAN SKILL (simplest) ships with Hermes. reads, searches, creates notes in your vault directly. hermes skills list | grep obsidian 2. OBSIDIAN MCP SERVER (deepest) 30+ tools: full-text search, tag lookup, note management, vault analysis, link analysis, orphan detection. add it via: hermes mcp 3. TELEGRAM + CRON → VAULT (always-on) set a cron job that writes daily summaries, research findings, or task reports directly into your Obsidian vault. your agent feeds the vault while you sleep. you review in Obsidian when you're ready. the unlock: Hermes memory handles what the agent needs to know per session (capped, injected). Obsidian handles everything the agent has ever learned (uncapped, searchable). short-term in Hermes. long-term in Obsidian. both accessible. both persistent. keep the vault scope narrow at first. start with one /Hermes folder. expand once you trust the workflow. 8 Loops Indise Hermes Agent👇

YanXbt

20,617 просмотров • 3 месяцев назад