Skip to main content
ClaudeWave

African intelligence infrastructure for AI applications, developers, and data products.

MCP ServersOfficial Registry0 stars0 forksJavaScriptUpdated today
ClaudeWave Trust Score
70/100
· OK
Passed
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Flags
  • !No standard license detected
Last scanned: 9/3/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/AFRIRESOLVE/afriresolve-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "afriresolve-mcp": {
      "command": "node",
      "args": ["/path/to/afriresolve-mcp/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/AFRIRESOLVE/afriresolve-mcp and follow its README for install instructions.
Use cases

MCP Servers overview

# AFRIRESOLVE

**African intelligence infrastructure for AI applications, developers, and data products.**

AfriResolve is a machine-readable African knowledge and intelligence service exposed through the **Model Context Protocol (MCP)** and a developer-friendly **REST API**.

It helps AI systems and applications resolve African terms, discover African foods and dishes, and build Africa-focused applications on structured data.

**👉 Get your free API key:** https://afriresolve-mcp.afriresolve28.workers.dev/developers
**📖 GitHub:** https://github.com/AFRIRESOLVE/afriresolve-mcp
**🎯 Free tier:** 100 API credits/month

## 🚀 Production

**MCP endpoint**

https://afriresolve-mcp.afriresolve28.workers.dev/mcp

**Developer portal**

https://afriresolve-mcp.afriresolve28.workers.dev/developers

AfriResolve runs on Cloudflare Workers with Cloudflare D1.

## Current Knowledge Base

The current production knowledge base contains:

- 20 canonical African food records
- 37 aliases
- African food names and local names
- Categories
- Countries
- Geographic regions
- Descriptions
- Common uses
- Selected nutrition information

The knowledge base is intentionally structured so it can expand over time.

## MCP Tools

AfriResolve currently exposes the following MCP tools:

### MCP tool groups

**African terminology**
- `resolve_african_term`

**African foods**
- `search_african_foods`
- `rank_african_foods`
- `list_african_foods`
- `find_foods_by_category`
- `find_foods_by_country`
- `find_foods_by_region`

**African dishes**
- `resolve_african_dish`
- `list_african_dishes`
- `find_dishes_by_country`
- `find_dishes_by_region`
- `find_dishes_by_ingredient`

**Intelligence**
- `get_afriresolve_intelligence`

### 1. resolve_african_term

Resolve an African word or food term.

Example:

```json
{
  "name": "resolve_african_term",
  "arguments": {
    "query": "acha"
  }
}
```

## 🌐 REST API



AfriResolve also provides a developer REST API for applications that prefer standard HTTP requests.



### Base URL



`https://afriresolve-mcp.afriresolve28.workers.dev`



### Available endpoints



- `POST /v1/resolve`

- `POST /v1/search`

- `POST /v1/rank`

- `POST /v1/keys`



### Authentication



Authenticated API requests accept either `x-api-key` or `Authorization: Bearer` authentication.



### Get a free API key



Visit the developer portal:



https://afriresolve-mcp.afriresolve28.workers.dev/developers



Each new account currently receives **100 free credits**.



API keys are displayed once when created. Store your key securely.

### Create a free API key with curl



```bash

curl -X POST \

  https://afriresolve-mcp.afriresolve28.workers.dev/v1/keys \

  -H "content-type: application/json" \

  -d '{"name":"Your Name","email":"you@example.com"}'

```



### Resolve an African term



```bash

curl -X POST \

  https://afriresolve-mcp.afriresolve28.workers.dev/v1/resolve \

  -H "content-type: application/json" \

  -H "x-api-key: YOUR_API_KEY" \

  -d '{"query":"acha"}'

```



Example:



`acha → fonio`



### Search African foods



```bash

curl -X POST \

  https://afriresolve-mcp.afriresolve28.workers.dev/v1/search \

  -H "content-type: application/json" \

  -H "x-api-key: YOUR_API_KEY" \

  -d '{"query":"fonio"}'

```



### Rank African foods



```bash

curl -X POST \

  https://afriresolve-mcp.afriresolve28.workers.dev/v1/rank \

  -H "content-type: application/json" \

  -H "x-api-key: YOUR_API_KEY" \

  -d '{"query":"high fiber African grains"}'

```

## 💳 Pricing

AfriResolve currently offers:

| Plan | Credits | Price |
|---|---:|---:|
| Free | 100/month | $0 |
| Developer | 10,000/month | $29 |
| Pro | 100,000/month | $199 |
| Enterprise | 1,000,000/month | $999 |

For API access and account creation, visit the developer portal.

## 🏗️ Architecture

AfriResolve is designed as a lightweight African intelligence layer for modern applications.

- **Cloudflare Workers** — edge API and MCP runtime
- **Cloudflare D1** — structured African knowledge, customer, usage, and intelligence data
- **MCP** — AI-native tool access
- **REST API** — standard HTTP integration
- **Usage metering** — credit-based API consumption
- **Intelligence layer** — demand and knowledge-gap signals from usage

## ⚡ Quick Start

### REST API

Create a free API key:

```bash
curl -X POST \
  https://afriresolve-mcp.afriresolve28.workers.dev/v1/keys \
  -H "content-type: application/json" \
  -d '{"name":"Your Name","email":"you@example.com"}'
```

Use the returned key to make authenticated requests:

```bash
curl -X POST \
  https://afriresolve-mcp.afriresolve28.workers.dev/v1/resolve \
  -H "content-type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{"query":"acha"}'
```

### MCP

Connect an MCP-compatible application to:

`https://afriresolve-mcp.afriresolve28.workers.dev/mcp`

The MCP interface provides access to African terminology, food, dish, and intelligence tools.

## 🧪 Development

```bash
git clone https://github.com/AFRIRESOLVE/afriresolve-mcp.git
cd afriresolve-mcp
npm install
npm test
```
africaafrican-techaiapiartificial-intelligencedata-infrastructuredeveloper-toolsmcpmodel-context-protocolrest-api

What people ask about afriresolve-mcp

What is AFRIRESOLVE/afriresolve-mcp?

+

AFRIRESOLVE/afriresolve-mcp is mcp servers for the Claude AI ecosystem. African intelligence infrastructure for AI applications, developers, and data products. It has 0 GitHub stars and its last recorded update is dated 2026-09-03.

How do I install afriresolve-mcp?

+

You can install afriresolve-mcp by cloning the repository (https://github.com/AFRIRESOLVE/afriresolve-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is AFRIRESOLVE/afriresolve-mcp safe to use?

+

Our security agent has analyzed AFRIRESOLVE/afriresolve-mcp and assigned a Trust Score of 70/100 (tier: OK). See the full breakdown of passed checks and flags on this page.

Who maintains AFRIRESOLVE/afriresolve-mcp?

+

AFRIRESOLVE/afriresolve-mcp is maintained by AFRIRESOLVE. The last recorded GitHub activity is dated 2026-09-03, with 0 open issues.

Are there alternatives to afriresolve-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy afriresolve-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: AFRIRESOLVE/afriresolve-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/afriresolve-afriresolve-mcp)](https://claudewave.com/repo/afriresolve-afriresolve-mcp)
<a href="https://claudewave.com/repo/afriresolve-afriresolve-mcp"><img src="https://claudewave.com/api/badge/afriresolve-afriresolve-mcp" alt="Featured on ClaudeWave: AFRIRESOLVE/afriresolve-mcp" width="320" height="64" /></a>

More MCP Servers

afriresolve-mcp alternatives