# rae-api-com/rae-mcp [Health: Active]

**Category:** 🛠️ Other Tools and Integrations  
**Repository:** https://github.com/rae-api-com/rae-mcp  
**GitHub Stars:** 7  
**Views:** 2  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/rae-api-com-rae-mcp

## Description
MCP Server to connect your preferred model with https://rae-api.com, Roya Academy of Spanish Dictionary

## Tools
Capabilities this server exposes over MCP:

- **query**
- **lang**
- **word**

## Claude Desktop Quick Installation
Heuristic fallback — verify the package name and runner against the repository README before running it. Uses `npx` (confidence: low):

```json
"mcpServers": {
  "rae-mcp": {
    "command": "npx",
    "args": ["-y","rae-api-com-rae-mcp"]
  }
}
```

## Documentation & README

# RAE Model Context Protocol (MCP) Server
[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/rae-api-com/rae-mcp)](https://archestra.ai/mcp-catalog/rae-api-com__rae-mcp)

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.

## Requirements

- Go 1.21+

## Installation

```bash
git clone https://github.com/rae-api-com/rae-mpc.git
cd rae-mpc
go build
```

## Usage

### Command Line Arguments

Run the server with stdio transport (for integration with LLMs):

```bash
./rae-mpc --transport stdio
```

Or run it as an SSE server:

```bash
./rae-mpc --transport sse --port 8080
```

### Available Tools

The MCP server exposes the following tools to LLMs:

1. `search` - Search RAE API for information
   - Parameters:
     - `query` (required): The search query
     - `lang` (optional): Language code (default: "es")

2. `get_word_info` - Get detailed information about a word
   - Parameters:
     - `word` (required): The word to look up
     - `lang` (optional): Language code (default: "es")

## Integration with LLMs

This 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.

