Need MCP Server Provides Semantic Tool Discovery for AI Agents

What Need Does
Need is an MCP server that provides semantic search capabilities across a database of over 10,000 tools from package managers including brew, npm, pip, and cargo. When an AI agent needs to perform a specific task, Need can interpret the request semantically, find the appropriate tool, install it, execute it, and return the results.
Key Features and Details
The system demonstrates its functionality with a concrete example: when given the instruction "compress these PNGs," Need identifies pngquant as the relevant tool, installs it via the appropriate package manager, runs the compression command, and reports back whether the operation succeeded.
These execution reports feed into a ranking system that improves search results over time. As more agents use Need and report on tool performance, the system learns which tools work best for specific tasks, creating a self-improving discovery mechanism.
Setup and Installation
Installation is straightforward:
npm i -g @agentneeds/needThe install command is allowlisted to real package managers only for security purposes.
Technical Implementation
The entire project was built using Claude Code, with Claude also generating enriched descriptions and usage examples for all 10,000+ tools in the index. This automated content generation enabled rapid scaling of the tool database.
Developers can browse the tool directory at agentneed.dev and access the source code on GitHub at github.com/tuckerschreiber/need.
Who It's For
This tool is designed for developers building AI agents that need to autonomously discover and utilize command-line tools for task execution.
📖 Read the full source: r/ClaudeAI
👀 See Also

LLMSpend: Open-source cost tracker for Anthropic and OpenAI SDKs
LLMSpend is a Python library that adds cost tracking to Anthropic and OpenAI SDK calls with two lines of code. It provides local SQLite storage, CLI reporting, and a web dashboard without sending data externally.

ClawCodex /advisor Mode: Pair Cheap Worker with Expensive Reviewer to Cut Costs Without Losing Quality
Open-source Python coding agent ClawCodex adds an /advisor mode that pairs a cheap worker model (e.g., Haiku) with an expensive reviewer (e.g., Opus) at decision points, cutting costs several-fold without sacrificing architectural judgment.

Gemma-4 26B-A4B with Opencode Runs Efficiently on M5 MacBook Air
A 32GB M5 MacBook Air can run the Gemma-4-26B-A4B-it-UD-IQ4_XS model at 300 tokens/second prompt processing and 12 tokens/second generation in low power mode, using only 8W of power without getting warm or noisy.

Fixing Context Bloat in Claude Code Auto-Memory with a Naming Schema and Audit Script
A Claude Code skill enforces a 3-type naming schema, required frontmatter, and a bash audit script to deduplicate memory files and reduce context load.