> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aurora-ai.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Herramienta MCP

> Ejecuta herramientas desde servidores de Protocolo de Contexto de Modelo (MCP)

export const BlockInfoCard = ({type, color, icon = false, iconSvg}) => {
  return <div className="mb-6 overflow-hidden rounded-lg border border-border">
      <div className="flex items-center justify-center p-6">
        <div className="flex h-20 w-20 items-center justify-center rounded-lg" style={{
    backgroundColor: color
  }}>
          {iconSvg ? <div className="h-10 w-10 text-white" dangerouslySetInnerHTML={{
    __html: iconSvg
  }} /> : <div className="font-mono text-xl opacity-70">
              {type.substring(0, 2)}
            </div>}
        </div>
      </div>
      {icon && <style jsx global>{`
          .block-icon {
            width: 80px;
            height: 80px;
            margin: 1rem auto;
            display: block;
          }
        `}</style>}
    </div>;
};

<BlockInfoCard
  type="mcp"
  color="#181C1E"
  icon={true}
  iconSvg={`<svg className="block-icon"
  
  xmlns='http://www.w3.org/2000/svg'
  viewBox='0 0 24 24'
  fill='none'
  stroke='currentColor'
  strokeWidth='2'
  strokeLinecap='round'
  strokeLinejoin='round'
>
  <rect   x='2' y='2' rx='2' ry='2' />
  <rect   x='2' y='14' rx='2' ry='2' />
  <line x1='6' x2='6.01' y1='6' y2='6' />
  <line x1='6' x2='6.01' y1='18' y2='18' />
</svg>`}
/>

## Instrucciones de uso

Integra MCP en el flujo de trabajo. Puede ejecutar herramientas desde servidores MCP. Requiere servidores MCP en la configuración del espacio de trabajo.

## Notas

* Categoría: `tools`
* Tipo: `mcp`
