An implementation of the Model Context Protocol (MCP) server that provides access to Exa.ai search capabilities.
This server enables AI agents to perform web searches using Exa.ai's API through the standardized Model Context Protocol. It exposes a search
tool that can be used by any MCP-compatible client.
-
Install Bun:
curl -fsSL https://bun.sh/install | bash
-
Set up your Exa API key:
export EXA_API_KEY=your_api_key_here
You can add this to your shell profile (.bashrc, .zshrc, etc.) to make it persistent.
Get your API key by signing up at Exa.ai
To install dependencies:
bun install
To run the server in development mode:
bun dev
To inspect the MCP protocol interactions:
bun inspect
This project is licensed under MIT License.
This project was created using the MCP Server template with Bun v1.1.38. Bun is a fast all-in-one JavaScript runtime.