Skip to main content

MCP Servers Overview

KOSMOS integrates 88 MCP servers across 9 domains to provide comprehensive tool access for AI agents.

Statistics

MetricCount
Total MCP Servers88
Implemented99
Total Tools2019
Domains9

Domain Summary

DomainServersImplementedStatus
Database & Storage120Planned
AI & Reasoning152Active
Productivity & Communication150Planned
DevOps & Infrastructure130Planned
Security100Planned
Finance & Analytics60Planned
Cloud Providers60Planned
Data & ETL60Planned
KOSMOS Native51Active

Architecture

Tool Calling

Agents call MCP tools through a unified interface:

class BaseAgent:
async def call_mcp(
self,
server: str,
tool: str,
params: Dict[str, Any]
) -> Any:
'''Call an MCP server tool.'''
return await self.mcp_clients[server].call_tool(tool, params)

See individual domain pages for specific tool documentation.