Foundry Agents MCP Server
Related Servers
Alternatives to Foundry Agents MCP Server
No user-submitted related servers found.
Related Servers
- AlicenseNot gradedqualityDmaintenanceEnables interaction with Azure AI Agent Service by automatically discovering agents and creating MCP tools for querying and managing agent workflows.1MIT
- AlicenseNot gradedqualityNot gradedmaintenanceEnables interaction with Azure AI Foundry services for model exploration, deployment, and performance evaluation. It provides tools for managing knowledge bases via AI Search Service, executing fine-tuning jobs, and orchestrating AI agents through natural language.MIT
- FlicenseNot gradedqualityDmaintenanceEnables file system operations, web scraping, and AI-powered search through MCP tools for use by LLM agents.1-
- FlicenseNot gradedqualityCmaintenanceExposes task management (add, list, complete tasks) and document search (RAG) as MCP tools for AI agents.-
- FlicenseAqualityDmaintenanceExposes two MCP tools (discover and execute) that enable agents to query an OpenAPI schema via natural language and execute matched API operations.2-
- AlicenseNot gradedqualityDmaintenanceExposes SAP AI Core APIs as MCP tools, enabling AI assistants to manage AI Core lifecycle and administration through natural language.6MIT
TDQS
Scored across 10 tools
The agents_* and workflows_* tools are fairly distinguishable, but there's notable overlap between index_ingest_project_log and search_add_to_vector_db — both add a document to the same vector index. search_vector_db vs index_* tools are clear, but the ingest/add duplication causes potential misselection.
The server mixes three namespaces: agents_*, index_*, and search_*, each with a verb_noun pattern. However, search_vector_db and search_add_to_vector_db break consistency — one names the action (search) while the other uses search_ as a namespace prefix, so search_* doesn't consistently mean a namespace or an action.
10 tools is a reasonable and well-scoped count for a server handling both agent invocation and vector-database search. Each tool has a clear role in the two primary workflows, though the redundant ingest/add tools pad the count slightly.
The agent workflow covers list/invoke/status/result, which is complete for async invocation. The vector DB side has create-index, ingest, add, and search. Minor gaps exist — there's no delete or update for vector documents, and the result retrieval is separated from status with no explicit error-handling tool — but core lifecycle needs are met.