nowfound

Alternatives

Products that do what Colin, a context engine for keeping agent skills fresh does

Hi HN — I'm the creator of FastMCP and wanted to share a new project we've open-sourced called Colin. I obviously love MCP, but I also use skills extremely heavily in my day-to-day work. Being exposed to both has made me very aware of a tension: - Anything with dynamic information, I ship over MCP. This takes work to set up and requires conversational boilerplate to refresh in every conversation. - Anything behavioral, I put in skills. They're lightweight, used automatically, and feel great. But I would never put dynamic information in a skill because keeping it up to date is a pain. And yet…

  1. 1MA

    I've been deeply involved in working with AI agents and large language models (LLMs) for a while now. During a recent job search, I found myself repeatedly explaining my skills and experiences to various assistants. Around the same time, I was creating content for my website to help hiring teams understand my capabilities better and make informed decisions. MCP had started to gain momentum and I saw a way to reduce my toil. So I built an MCP server that can effectively communicate my qualifications as a job candidate. This server acts as an AI-powered resume, providing an understanding of my…

    2025 · ai.jakegaylor.com

  2. 2

    The fast, Pythonic way to build MCP servers and clients

    Jan 2026

  3. 3

    Your context, available to every agent.

    Jul 2026 · in-parallel.com

  4. 4

    Persistent memory for AI coding agents

    Apr 2026

  5. 5
    Pensieve133

    Full company context for every AI agent

    Mar 2026

  6. 6

    AI Skill & MCP server management for teams & enterprises

    Jul 2026 · localskills.sh

  7. 7

    The memory layer for AI agents

    Jul 2026 · kitforai.com

  8. 8

    Agent-first task management for more agentic productivity

    11d ago · taskshell.app

  9. 9RM

    I was tired of asking my claude code to reference my codex chats to get references to what decisions it made and why ; so I built Reference MCP It, whenever prompted establishes sessions to get direct access - been using it on my system for a bit and was super helpful so I made a repo :) Would love feedback!

    Jun 2026 · github.com

  10. 10LF

    We built a no/low-code tool that lets you spin up MCPs from a single prompt. MCPs give LLMs access to tools, data, and actions—but they’re hard to build and deploy. Our tool abstracts that: describe what you want, and it auto-generates and hosts the necessary components. No UI flows, no manual chaining—just prompt and go. Examples: • Pull email, parse a DocSend, check Reddit, draft reply • Extract data from a niche site + send a Slack alert • Combine tools without writing glue code Live demo: https://www.youtube.com/watch?v=4uCiaQrgfoE Built over a weekend after getting…

    2025 · generatemcp.com

  11. 11IM

    Recently, I was exploring the OpenAI Agents SDK and building MCP agents and agentic Workflows. To implement my learnings, I thought, why not solve a real, common problem? So I built this multi-agent job search workflow that takes a LinkedIn profile as input and finds personalized job opportunities based on your experience, skills, and interests. I used: - OpenAI Agents SDK to orchestrate the multi-agent workflow - Bright Data MCP server for scraping LinkedIn profiles & YC jobs. - Nebius AI models for fast + cheap inference - Streamlit for UI (The project isn't that complex - I kept it…

    2025

  12. 12FA

    Hi HN -- Since Anthropic announced the Model Context Protocol (MCP) last week [1], I've been excited about giving Claude new capabilities through my custom servers. But while MCP is powerful, implementing the protocol correctly requires a lot of low-level boilerplate code. I found myself wanting something like FastAPI - a high-level framework that would let me focus on building features, not servers. After some hacking, I'm sharing FastMCP: a Pythonic framework for building MCP servers. FastMCP uses decorators to transform normal functions into MCP tools, resources, templates, and prompts,…

    2024 · github.com

  13. 13OS

    Hello HN, I’ve been building AI agents lately and ran into a common "Context Bloat" problem. When an agent has 20+ skills, stuffing every system prompt, reference doc, and tool definition into a single request quickly hits token limits and degrades model performance (the "lost in the middle" problem). To solve this, I built OpenSkills, an open-source SDK that implements a Progressive Disclosure Architecture for agent skills. The Core Concept: Instead of loading everything upfront, OpenSkills splits a skill into three layers: Layer 1 (Metadata): Light-weight tags and triggers (always loaded…

    Jan 2026

  14. 14PA

    Hi HN, I'm the author of FastMCP, the most popular Python framework for building MCP servers. I've been really excited about MCP Apps for a while. I think letting a server ship a fully interactive UI directly into the conversation is one of the most compelling additions to the protocol. I wanted to make this a first-class experience in FastMCP, but I kept getting stuck on what it actually means for a Python framework to integrate with a frontend feature. The JavaScript ecosystem has extraordinary tooling for this. I didn't want to build a worse version of it just to stay in Python. What…

    Apr 2026 · prefab.prefect.io

  15. 15MM

    Hey HN! I’m Gui from deco (decocms.com). We’ve been using this tool internally as the foundation for a few customer AI platforms, and today we’re open-sourcing it as MCP Mesh. MCP is quickly becoming the standard for agentic systems, but… once you go past a couple servers it turns into the same problems for every team: - M×N config sprawl (every client wired to every server, each with its own JSON + ports + retries) - Token + tool bloat (dumping tool definitions into every prompt doesn’t scale) - Credentials + blast radius (tokens scattered across clients, hard to audit, hard to revoke) - No…

    Dec 2025 · github.com

  16. 16MM

    I built MCPlexor to solve a token waste problem I kept running into with MCP-based agents. The Problem: MCP (Model Context Protocol) is great for giving LLMs access to external tools. But if you connect multiple servers (GitHub, Linear, Postgres, Slack), you end up with 40-50k tokens of tool definitions injected into every request – before the agent even does anything. On a 200k context model, that's 25% gone. On smaller models, it's worse. And most runs only use 1-2 tools. The Solution: MCPlexor sits between your agent and your MCP servers. Instead of loading all tool definitions upfront:…

    Feb 2026 · mcplexor.com

  17. 17IB

    The main goal of this was to be able to not just run multiple Claude Code sessions at once, but actually manage them and keep track of what I was doing. Sometimes this is multiple attempts on the same task, sometimes I work several tasks at once. Really I was just sick of twiddling my thumbs waiting for the coding agent to finish, and I wanted it to be easy to work on/review/test another change while I waited.

    2025 · github.com

  18. 18JA

    Hey HN, I'm one of the creators of joinly.ai, an open-source solution that makes browser-based video conferences accessible to AI agents, allowing you to interact with them in real time. Think of it as a connector layer that brings the functionality of your AI agents to your meetings, allowing you to essentially build your own custom meeting assistant. We didn't want to build yet another Python framework for creating agents with its own syntactic sugar that you have to learn. That's why we opted for a different approach, utilizing an MCP server. Our MCP server provides essential meeting…

    2025 · github.com

  19. 19MA

    I’ve been building and using agents heavily lately. The Model Context Protocol ecosystem is growing insanely fast, but discovering and configuring new tools is still highly manual. Every time I needed to connect an agent to a new service, I had to browse registries, figure out the transport type, identify required env vars, and manually update "mcp.json" files. So I built MCPfinder. It aggregates servers from the official MCP registry, Glama, and Smithery (around 25,000 combined entries) into a deduplicated, ranked catalog. But the real twist is the DX: MCPfinder is itself an MCP server :D…

    Apr 2026 · mcpfinder.dev

  20. 20

    Persistent, project-local memory for AI coding agent via MCP

    7d ago · opencntx.dev

  21. 21

    I generally am a forgetful person who remembers very little of what is read sometime ago. I also tried using many of tools related to hardcoded flashcards but they may not present the full picture. I can't share it with my friends about what i am learning easily without signin up. manthan solves for that. I can create a deck of cards that have prerequisites and since this is a MCP any ai agent which has mcp capability can do this. Its been a time saver for me to recap what is the dense things that are there in a topic. the above one is related to build things that don't scale by PG. Also…

    20d ago · manthan.sirune.tech

  22. 22RA

    Hi HN! Sean from MindStudio here. I wanted to share something we've been working on that I think introduces some new ideas into the "AI coding agent" space. Remy is an AI agent that builds full-stack TypeScript apps from a spec written in a new flavor of annotated markdown. The spec has two layers: prose describing what the app does, and annotations that carry the technical precision (data types, edge cases, validation rules, code snippets). The agent then "compiles" this into code: backend methods, typed schemas, frontends, test scenarios, and everything else are derived artifacts of the…

    Apr 2026 · remy.msagent.ai

  23. 23PT

    Hi HN, I'm Matt, founder of MCPJam. We're building open source dev tools for MCP server builders. There’s been a lot of debate around skills vs MCP. From what I see, there’s a growing trend of people using skills paired with MCP servers. Skills teach the agent how to use the MCP server tools and guide the agent to completing complex workflows. We’re also seeing Anthropic encourage the use of Skills + MCP in their products. Anthropic recently launched the connectors marketplace. A good example of this is the Figma connector + skills. The Figma skill teaches the agent how to use the Figma MCP…

    Jan 2026 · mcpjam.com

  24. 24AP

    I'm Guy, the founder behind Snyk — now building Tessl, a package manager for agent skills. We’ve recently witnessed that most teams still treat skills as static artifacts: markdown files, created or copied from repo to repo. This approach offers a strong initial boost, but quickly creates debt: - Skills are duplicated, and updates never roll out. - Poor quality skills go unseen, misguiding agents instead of helping. - Skill knowledge grows stale, and don’t keep up with the systems and practices they describe. Without a way to evaluate skills, teams have no clear way to understand how good a…

    Feb 2026 · tessl.io

Ranked by how close each launch is in meaning, then by votes. Refine with a description →