Eagle MCP Server
Servidor Eagle MCP (no oficial)

Un servidor de Protocolo de Contexto de Modelo (MCP) para Eagle. Wiki
JPG/JPEGPNGPDFSVGMP4MP3FBXOBJEPSTIF/TIFFWebPBMPICORAWetc.
Águila: https://eagle.cool/
Documentación de la API de Eagle: https://api.eagle.cool/
Requisitos
Python 3.13
Related MCP server: files-mcp-ts
Prerrequisitos
Instale las dependencias necesarias:
uv syncUso
Inicie la aplicación Eagle .
Inicie este servidor MCP ejecutando el siguiente comando:
uv run main.py
# To use a different endpoint:
# EAGLE_API_BASE_URL=http://localhost:12345 uv run main.pyConexión al servidor MCP mediante SSE
Todos los clientes MCP más populares (Claude Desktop, Cursor y Windsurf) utilizan el siguiente formato de configuración:
{
"mcpServers": {
"eagle-mcp-server": {
"url": "http://localhost:8000/mcp"
}
}
}Código VS
"mcp": {
"servers": {
"eagle-mcp-server": {
"type": "sse",
"url": "http://localhost:8000/mcp"
}
}
}Herramientas
Apoyado | ID de operación | Punto final de API | Habilitado (predeterminado) | Categoría |
✅ |
| /api/conectar | MCP | |
✅ |
| /api/aplicación/información | ⚫︎ | Solicitud |
✅ |
| /api/carpeta/crear | ⚫︎ | Carpeta |
✅ |
| /api/carpeta/renombrar | Carpeta | |
✅ |
| /api/carpeta/actualización | ⚫︎ | Carpeta |
✅ |
| /api/carpeta/lista | ⚫︎ | Carpeta |
✅ |
| /api/carpeta/listaReciente | Carpeta | |
✅ |
| /api/item/addFromURL | Artículo | |
✅ |
| /api/item/addFromURLs | Artículo | |
✅ |
| /api/item/addFromPath | ⚫︎ | Artículo |
✅ |
| /api/item/addFromPaths | Artículo | |
✅ |
| /api/item/addBookmark | Artículo | |
✅ |
| /api/item/info | ⚫︎ | Artículo |
✅ |
| /api/item/fuente | ⚫︎ | Artículo |
✅ |
| /api/item/miniatura | Artículo | |
✅ |
| /api/item/lista | ⚫︎ | Artículo |
✅ |
| /api/item/moverALaPapelera | ⚫︎ | Artículo |
✅ |
| /api/item/refreshPalette | Artículo | |
✅ |
| /api/item/refreshMiniatura | Artículo | |
✅ |
| /api/item/actualización | ⚫︎ | Artículo |
✅ |
| /api/biblioteca/información | ⚫︎ | Biblioteca |
✅ |
| /api/biblioteca/historial | Biblioteca | |
✅ |
| /api/biblioteca/switch | Biblioteca | |
✅ |
| /api/biblioteca/icono | Biblioteca | |
[ ] | ... | ... | ... |
Documentación de la API del servidor MCP:
Casos de uso
1) Mismo host (recomendado)
flowchart LR
subgraph 192.168.1.100
direction LR
subgraph FileSystem [File System]
end
subgraph EagleApp [Eagle App<br/>localhost:41595]
end
subgraph MCPServer [MCP Server<br/>localhost:8000]
end
subgraph MCPClient [MCP Client]
end
end
EagleApp ==> MCPServer e1@==> MCPClient
MCPClient e2@==> MCPServer ==> EagleApp
EagleApp ==> FileSystem
FileSystem ==> EagleApp
e1@{ animate: true }
e2@{ animate: true }[!TIP] Tienes acceso directo al sistema de archivos.
2) Mismo host (Eagle App, servidor MCP) + Otro host (cliente MCP)
flowchart LR
subgraph 192.168.1.100
subgraph FileSystem [File System]
end
subgraph EagleApp [Eagle App<br/>localhost:41595]
end
subgraph MCPServer [MCP Server<br/>localhost:8000]
end
end
subgraph 192.168.1.xxx
subgraph MCPClient [MCP Client]
end
end
EagleApp ==> MCPServer e1@==> MCPClient
MCPClient e2@==> MCPServer ==> EagleApp
EagleApp ==> FileSystem
FileSystem ==> EagleApp
e1@{ animate: true }
e2@{ animate: true }[!ADVERTENCIA] No tienes acceso al sistema de archivos.
3) Otro anfitrión
flowchart LR
subgraph 192.168.1.100
subgraph FileSystem [File System]
end
subgraph EagleApp [Eagle App<br/>localhost:41595]
end
end
subgraph 192.168.1.101
subgraph MCPServer [MCP Server<br/>localhost:8000]
end
end
subgraph 192.168.1.xxx
subgraph MCPClient [MCP Client]
end
end
EagleApp ==> MCPServer e1@==> MCPClient
MCPClient e2@==> MCPServer ==> EagleApp
EagleApp ==> FileSystem
FileSystem ==> EagleApp
e1@{ animate: true }
e2@{ animate: true }[!ADVERTENCIA] No tienes acceso al sistema de archivos.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for Clipkit — gives AI agents a video toolbox via the Clipkit schema.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
A Model Context Protocol (MCP) server for Selise Blocks Cloud integration
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP Server that enables LLMs to interact with the local filesystem.1379614MIT
- FlicenseBqualityDmaintenanceA lightweight MCP server for basic file operations, enabling reading, writing, and listing files securely via the Model Context Protocol.31
- AlicenseCqualityAmaintenanceA full-featured secure MCP server for local file system operations, with built-in image processing, OCR and media tools. Fully compliant with the official Model Context Protocol specification, offering standardized request/response schemas, large-file streaming I/O, multi-transport remote deployment, and comprehensive text search & replace functionality for LLM agent integration.22Apache 2.0
- AlicenseAqualityCmaintenanceLocal MCP server that compresses images and videos, extracts video frames, and prepares media for AI vision agents by returning file paths instead of inline base64.6121MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tuki0918/eagle-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server