This repository contains an implementation of a Model Context Protocol (MCP) server for the Royal Spanish Academy (RAE) API. It allows language models to interact with RAE's dictionary and linguistic resources. Run the server with stdio transport (for integration with LLMs): Or run it as an SSE server: The MCP server exposes the following tools to LLMs: 1. search - Search RAE API for information -
Add this skill
npx mdskills install rae-api-com/rae-mcpProvides access to RAE dictionary with clear setup and tool descriptions
1# RAE Model Context Protocol (MCP) Server2[](https://archestra.ai/mcp-catalog/rae-api-com__rae-mcp)34This repository contains an implementation of a Model Context Protocol (MCP) server for the Royal Spanish Academy (RAE) API. It allows language models to interact with RAE's dictionary and linguistic resources.56## Requirements78- Go 1.21+910## Installation1112```bash13git clone https://github.com/rae-api-com/rae-mpc.git14cd rae-mpc15go build16```1718## Usage1920### Command Line Arguments2122Run the server with stdio transport (for integration with LLMs):2324```bash25./rae-mpc --transport stdio26```2728Or run it as an SSE server:2930```bash31./rae-mpc --transport sse --port 808032```3334### Available Tools3536The MCP server exposes the following tools to LLMs:37381. `search` - Search RAE API for information39 - Parameters:40 - `query` (required): The search query41 - `lang` (optional): Language code (default: "es")42432. `get_word_info` - Get detailed information about a word44 - Parameters:45 - `word` (required): The word to look up46 - `lang` (optional): Language code (default: "es")4748## Integration with LLMs4950This MCP server can be integrated with language models that support the Model Context Protocol, allowing them to access RAE's linguistic resources for improved Spanish language capabilities.51
Full transparency — inspect the skill content before installing.