@agenticmail/mcp 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +35 -0
- package/README.md +340 -0
- package/REFERENCE.md +857 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2106 -0
- package/package.json +62 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Ope Olatunji (https://github.com/ope-olatunji)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
AgenticMail - Email infrastructure for AI agents.
|
|
26
|
+
|
|
27
|
+
Project: https://github.com/agenticmail/agenticmail
|
|
28
|
+
Author: Ope Olatunji
|
|
29
|
+
GitHub: https://github.com/ope-olatunji
|
|
30
|
+
|
|
31
|
+
This software includes components for programmatic email management,
|
|
32
|
+
SMTP/IMAP integration, MCP server tooling, Cloudflare gateway orchestration,
|
|
33
|
+
and OpenClaw plugin infrastructure. All packages within this monorepo
|
|
34
|
+
(@agenticmail/core, @agenticmail/api, @agenticmail/mcp, @agenticmail/openclaw,
|
|
35
|
+
and agenticmail) are covered under this license.
|
package/README.md
ADDED
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
# @agenticmail/mcp
|
|
2
|
+
|
|
3
|
+
The MCP (Model Context Protocol) server for [AgenticMail](https://github.com/agenticmail/agenticmail) — gives any MCP-compatible AI client full email capabilities.
|
|
4
|
+
|
|
5
|
+
When connected, your AI agent can send emails, check inboxes, reply to messages, manage contacts, schedule emails, assign tasks to other agents, and more — all through natural language. The server provides 54 tools that cover every email and agent management operation.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @agenticmail/mcp
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
**Requirements:** Node.js 20+, AgenticMail API server running
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## What This Package Does
|
|
18
|
+
|
|
19
|
+
This is the bridge between your AI client and the AgenticMail system. It runs as a subprocess that the AI communicates with through standard input/output (no network ports opened). Every tool call gets translated into an API request to the AgenticMail server, and the response comes back as formatted text the AI can understand.
|
|
20
|
+
|
|
21
|
+
Think of it this way: your AI agent doesn't know how to send email natively. This MCP server teaches it how by giving it a set of tools — "send_email", "list_inbox", "reply_email", and so on — that the AI can call when you ask it to do email-related tasks.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## Setup
|
|
26
|
+
|
|
27
|
+
### MCP Client Setup (CLI-Based)
|
|
28
|
+
|
|
29
|
+
Add to your MCP client configuration (e.g., `.mcp.json` or project settings):
|
|
30
|
+
|
|
31
|
+
```json
|
|
32
|
+
{
|
|
33
|
+
"mcpServers": {
|
|
34
|
+
"agenticmail": {
|
|
35
|
+
"command": "npx",
|
|
36
|
+
"args": ["agenticmail-mcp"],
|
|
37
|
+
"env": {
|
|
38
|
+
"AGENTICMAIL_API_URL": "http://127.0.0.1:3100",
|
|
39
|
+
"AGENTICMAIL_API_KEY": "ak_your_agent_key"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### Desktop Clients
|
|
47
|
+
|
|
48
|
+
For desktop AI applications, add to your MCP configuration file. Example paths:
|
|
49
|
+
- **macOS:** `~/Library/Application Support/<app>/config.json`
|
|
50
|
+
- **Windows:** `%APPDATA%\<app>\config.json`
|
|
51
|
+
|
|
52
|
+
```json
|
|
53
|
+
{
|
|
54
|
+
"mcpServers": {
|
|
55
|
+
"agenticmail": {
|
|
56
|
+
"command": "npx",
|
|
57
|
+
"args": ["agenticmail-mcp"],
|
|
58
|
+
"env": {
|
|
59
|
+
"AGENTICMAIL_API_URL": "http://127.0.0.1:3100",
|
|
60
|
+
"AGENTICMAIL_API_KEY": "ak_your_agent_key"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### Environment Variables
|
|
68
|
+
|
|
69
|
+
| Variable | Required | Description |
|
|
70
|
+
|----------|----------|-------------|
|
|
71
|
+
| `AGENTICMAIL_API_URL` | Yes | AgenticMail API server URL (e.g., `http://127.0.0.1:3100`) |
|
|
72
|
+
| `AGENTICMAIL_API_KEY` | Yes | Agent API key (`ak_...`). Determines which agent this MCP server acts as. |
|
|
73
|
+
| `AGENTICMAIL_MASTER_KEY` | No | Master key (`mk_...`). Required for admin operations (create/delete agents, approve emails, gateway config). |
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
## How It Works
|
|
78
|
+
|
|
79
|
+
The MCP server sits between your AI and the AgenticMail API:
|
|
80
|
+
|
|
81
|
+
```
|
|
82
|
+
AI Client → MCP tool call → agenticmail-mcp → HTTP request → AgenticMail API → Stalwart Mail Server
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Each tool call:
|
|
86
|
+
1. Receives structured arguments from the AI
|
|
87
|
+
2. Validates the input (UIDs must be positive integers, arrays must be non-empty, etc.)
|
|
88
|
+
3. Makes an HTTP request to the AgenticMail API with a 30-second timeout
|
|
89
|
+
4. Returns formatted text results back to the AI
|
|
90
|
+
|
|
91
|
+
The server runs with stdio transport — the AI client sends JSON-RPC messages via stdin, and the server responds via stdout. No network ports are opened by the MCP server itself. It shuts down gracefully on SIGTERM or SIGINT.
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
## Tools
|
|
96
|
+
|
|
97
|
+
### Email — Core Operations (13 tools)
|
|
98
|
+
|
|
99
|
+
| Tool | Description | Example Prompt |
|
|
100
|
+
|------|-------------|----------------|
|
|
101
|
+
| `send_email` | Send email with to, subject, text/html, attachments, CC | "Send an email to john@example.com about the meeting" |
|
|
102
|
+
| `list_inbox` | List recent inbox messages (paginated, up to 100) | "Check my inbox" |
|
|
103
|
+
| `read_email` | Read full email content with security analysis | "Read email #42" |
|
|
104
|
+
| `reply_email` | Reply (or reply-all) preserving threading | "Reply to that email saying I'll attend" |
|
|
105
|
+
| `forward_email` | Forward an email with original attachments | "Forward that to sarah@example.com" |
|
|
106
|
+
| `search_emails` | Search by from, subject, body, date range, relay | "Find emails from John about the budget" |
|
|
107
|
+
| `delete_email` | Delete a specific email by UID | "Delete that spam email" |
|
|
108
|
+
| `move_email` | Move email to a folder | "Move this to Archive" |
|
|
109
|
+
| `mark_read` | Mark email as read | "Mark email #15 as read" |
|
|
110
|
+
| `mark_unread` | Mark email as unread | "Mark that as unread" |
|
|
111
|
+
| `inbox_digest` | Get inbox summary with body previews | "Give me a digest of my inbox" |
|
|
112
|
+
| `wait_for_email` | Wait for new email in real time (up to 5 minutes) | "Wait for a reply from john@example.com" |
|
|
113
|
+
| `import_relay_email` | Import email from connected Gmail/Outlook | "Import email UID 500 from Gmail" |
|
|
114
|
+
|
|
115
|
+
### Email — Batch Operations (5 tools)
|
|
116
|
+
|
|
117
|
+
| Tool | Description |
|
|
118
|
+
|------|-------------|
|
|
119
|
+
| `batch_delete` | Delete multiple emails by UID list |
|
|
120
|
+
| `batch_mark_read` | Mark multiple emails as read |
|
|
121
|
+
| `batch_mark_unread` | Mark multiple emails as unread |
|
|
122
|
+
| `batch_move` | Move multiple emails to a folder |
|
|
123
|
+
| `batch_read` | Read multiple full emails at once |
|
|
124
|
+
|
|
125
|
+
### Email — Organization (14 tools)
|
|
126
|
+
|
|
127
|
+
| Tool | Description |
|
|
128
|
+
|------|-------------|
|
|
129
|
+
| `manage_contacts` | Add, remove, and list contacts in address book |
|
|
130
|
+
| `manage_drafts` | Create, list, edit, delete, and send drafts |
|
|
131
|
+
| `manage_tags` | Create tags, assign to messages, remove, list |
|
|
132
|
+
| `manage_rules` | Create email filtering rules (auto-move, auto-delete, mark read) |
|
|
133
|
+
| `manage_signatures` | Create, list, and delete email signatures |
|
|
134
|
+
| `manage_templates` | Create, list, and delete email templates |
|
|
135
|
+
| `manage_scheduled` | Schedule emails for future delivery, list, cancel |
|
|
136
|
+
| `manage_spam` | List spam folder, report spam, mark as not-spam, get spam score |
|
|
137
|
+
| `manage_pending_emails` | View blocked outbound emails awaiting approval |
|
|
138
|
+
| `template_send` | Send email using a saved template with variable substitution |
|
|
139
|
+
| `create_folder` | Create a new IMAP folder |
|
|
140
|
+
| `list_folder` | List messages in a specific folder |
|
|
141
|
+
| `list_folders` | List all available folders |
|
|
142
|
+
| `check_health` | Check AgenticMail server and Stalwart health |
|
|
143
|
+
|
|
144
|
+
### Multi-Agent Communication (8 tools)
|
|
145
|
+
|
|
146
|
+
| Tool | Description | Example Prompt |
|
|
147
|
+
|------|-------------|----------------|
|
|
148
|
+
| `list_agents` | List all agents with name, email, role | "Show me all agents" |
|
|
149
|
+
| `message_agent` | Send email to another agent (with priority levels) | "Tell the researcher to look up pricing data" |
|
|
150
|
+
| `check_messages` | Check for new messages from agents and externals | "Any new messages?" |
|
|
151
|
+
| `assign_task` | Assign a task to another agent (async) | "Assign a research task to the analyst" |
|
|
152
|
+
| `claim_task` | Claim a pending task assigned to you | "Claim that task" |
|
|
153
|
+
| `submit_result` | Submit result for a claimed task | "Submit the research findings" |
|
|
154
|
+
| `check_tasks` | Check incoming or outgoing tasks | "Do I have any pending tasks?" |
|
|
155
|
+
| `call_agent` | Synchronous RPC — waits for result (up to 5 min) | "Ask the researcher to find pricing and wait" |
|
|
156
|
+
|
|
157
|
+
### Administration (7 tools)
|
|
158
|
+
|
|
159
|
+
These tools require the master key (`AGENTICMAIL_MASTER_KEY`):
|
|
160
|
+
|
|
161
|
+
| Tool | Description |
|
|
162
|
+
|------|-------------|
|
|
163
|
+
| `create_account` | Create a new agent with name and role |
|
|
164
|
+
| `delete_agent` | Delete an agent (archives emails, records report) |
|
|
165
|
+
| `cleanup_agents` | List inactive agents, clean up, set persistent |
|
|
166
|
+
| `deletion_reports` | View past agent deletion reports |
|
|
167
|
+
| `update_metadata` | Update agent metadata (display name, owner, etc.) |
|
|
168
|
+
| `whoami` | Get current agent info (name, email, role, ID) |
|
|
169
|
+
| `setup_payment` | Get Cloudflare payment setup instructions |
|
|
170
|
+
|
|
171
|
+
### Gateway Configuration (6 tools)
|
|
172
|
+
|
|
173
|
+
These tools require the master key:
|
|
174
|
+
|
|
175
|
+
| Tool | Description |
|
|
176
|
+
|------|-------------|
|
|
177
|
+
| `check_gateway_status` | Check current email gateway mode and health |
|
|
178
|
+
| `setup_email_relay` | Configure Gmail/Outlook relay mode |
|
|
179
|
+
| `setup_email_domain` | Configure custom domain with Cloudflare |
|
|
180
|
+
| `setup_gmail_alias` | Get Gmail "Send mail as" alias instructions |
|
|
181
|
+
| `setup_guide` | Show relay vs domain comparison guide |
|
|
182
|
+
| `send_test_email` | Send a test email to verify gateway |
|
|
183
|
+
| `purchase_domain` | Search for and purchase a domain |
|
|
184
|
+
|
|
185
|
+
---
|
|
186
|
+
|
|
187
|
+
## Outbound Security Scanning
|
|
188
|
+
|
|
189
|
+
Every email sent through `send_email`, `reply_email`, or `forward_email` is scanned before going out. The scanner checks for:
|
|
190
|
+
|
|
191
|
+
### What Gets Detected
|
|
192
|
+
|
|
193
|
+
**Personal Information (PII)** — Social Security numbers, credit card numbers, phone numbers, bank routing numbers, driver's license numbers, passport numbers, tax IDs, Medicare/Medicaid IDs, immigration numbers, PINs, security question answers, IBAN/SWIFT codes, cryptocurrency wallet addresses, wire transfer instructions
|
|
194
|
+
|
|
195
|
+
**Credentials** — API keys, AWS keys, passwords, private keys (PEM format), bearer tokens, database connection strings, GitHub tokens, Stripe keys, JWTs, webhook URLs, environment variable blocks, crypto seed phrases, 2FA backup codes, username/password pairs, OAuth tokens, VPN credentials
|
|
196
|
+
|
|
197
|
+
**System Internals** — Private IP addresses, file paths from common system directories, environment variable assignments
|
|
198
|
+
|
|
199
|
+
**Owner Privacy** — Mentions of the owner's personal information, revelations about who created or operates the agent
|
|
200
|
+
|
|
201
|
+
**Risky Attachments** — Private key files (.pem, .key, .p12, .pfx), environment files (.env, .credentials), database files (.db, .sqlite), executables (.exe, .bat, .sh, .ps1), and more
|
|
202
|
+
|
|
203
|
+
### What Happens When Something Is Found
|
|
204
|
+
|
|
205
|
+
- **Medium severity** — the email is sent, but the AI receives a warning in the response
|
|
206
|
+
- **High severity** — the email is **blocked** and stored for human review
|
|
207
|
+
|
|
208
|
+
When an email is blocked, the AI is told the pending ID and instructed to let the user know. The user (owner) receives a notification email with the full blocked content and instructions.
|
|
209
|
+
|
|
210
|
+
### Human-Only Approval
|
|
211
|
+
|
|
212
|
+
The AI **cannot** approve or reject its own blocked emails. The `manage_pending_emails` tool only allows listing and viewing — approve/reject actions are explicitly rejected with a clear error message. Only the human owner can approve (via the API, the interactive shell, or by replying "approve" or "yes" to the notification email).
|
|
213
|
+
|
|
214
|
+
### Automatic Follow-Up Reminders
|
|
215
|
+
|
|
216
|
+
When an email is blocked, the MCP server automatically schedules escalating follow-up reminders for the AI:
|
|
217
|
+
|
|
218
|
+
1. **12 hours** — first reminder
|
|
219
|
+
2. **6 hours** — second reminder
|
|
220
|
+
3. **3 hours** — third reminder
|
|
221
|
+
4. **1 hour** — final reminder before cooldown
|
|
222
|
+
5. **3-day cooldown** — then the cycle restarts
|
|
223
|
+
|
|
224
|
+
These reminders are injected into tool responses, prompting the AI to ask the user about the pending approval. A background heartbeat checks every 5 minutes to detect if the owner has already approved or rejected the email, and cancels the reminders if so.
|
|
225
|
+
|
|
226
|
+
---
|
|
227
|
+
|
|
228
|
+
## Inbound Security
|
|
229
|
+
|
|
230
|
+
When the AI reads an email with `read_email`, the response includes a security analysis:
|
|
231
|
+
|
|
232
|
+
- **Spam score** — how likely the email is to be spam or malicious (0-100)
|
|
233
|
+
- **Category** — what type of threat was detected (phishing, social engineering, prompt injection, etc.)
|
|
234
|
+
- **Sanitization** — whether invisible Unicode characters or hidden HTML were found and cleaned
|
|
235
|
+
- **Attachment warnings** — flags for executables, archives, HTML files, and disguised file extensions (like `report.pdf.exe`)
|
|
236
|
+
|
|
237
|
+
Internal emails (between agents on the same system) are trusted and skip spam scoring.
|
|
238
|
+
|
|
239
|
+
---
|
|
240
|
+
|
|
241
|
+
## Waiting for Email in Real Time
|
|
242
|
+
|
|
243
|
+
The `wait_for_email` tool opens a Server-Sent Events (SSE) connection to the API and listens for new emails or task notifications. If SSE is unavailable, it falls back to polling the inbox. This is useful for workflows where the AI needs to wait for a reply before continuing.
|
|
244
|
+
|
|
245
|
+
The wait has a configurable timeout (default 2 minutes, maximum 5 minutes). When an email arrives, the tool returns details about the message. If a task notification arrives instead, it returns the task information.
|
|
246
|
+
|
|
247
|
+
---
|
|
248
|
+
|
|
249
|
+
## Relay Email Integration
|
|
250
|
+
|
|
251
|
+
When the owner has connected a Gmail or Outlook account as a relay, the AI can:
|
|
252
|
+
|
|
253
|
+
- **Search the relay** — `search_emails` with `searchRelay: true` searches both the local inbox and the connected Gmail/Outlook account. Relay results come back with a separate set of UIDs tagged by account.
|
|
254
|
+
- **Import from relay** — `import_relay_email` pulls a specific email from the relay account into the local inbox, preserving all headers for proper threading.
|
|
255
|
+
|
|
256
|
+
This means the AI can find and import emails from the owner's real Gmail/Outlook inbox, then reply to them normally through the AgenticMail system.
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
## Scheduled Emails
|
|
261
|
+
|
|
262
|
+
The `manage_scheduled` tool accepts flexible time formats:
|
|
263
|
+
|
|
264
|
+
- **ISO 8601:** `2026-02-14T10:00:00Z`
|
|
265
|
+
- **Relative:** `in 30 minutes`, `in 2 hours`
|
|
266
|
+
- **Named:** `tomorrow 8am`, `tomorrow 2pm`
|
|
267
|
+
- **Day of week:** `next monday 9am`, `next friday 2pm`
|
|
268
|
+
- **Human format:** `02-14-2026 3:30 PM EST`
|
|
269
|
+
- **Casual:** `tonight`, `this evening`
|
|
270
|
+
|
|
271
|
+
The API server checks every 30 seconds for scheduled emails whose send time has arrived and sends them automatically.
|
|
272
|
+
|
|
273
|
+
---
|
|
274
|
+
|
|
275
|
+
## Inter-Agent Communication
|
|
276
|
+
|
|
277
|
+
### Message Priority
|
|
278
|
+
|
|
279
|
+
When using `message_agent`, the AI can set a priority level:
|
|
280
|
+
- **Normal** — no prefix
|
|
281
|
+
- **High** — subject prefixed with `[HIGH]`
|
|
282
|
+
- **Urgent** — subject prefixed with `[URGENT]`
|
|
283
|
+
|
|
284
|
+
### Synchronous RPC
|
|
285
|
+
|
|
286
|
+
The `call_agent` tool is unique — it assigns a task to another agent and then **holds the connection open** until that agent responds (up to 5 minutes). This is useful when the AI needs an answer from another agent before it can continue.
|
|
287
|
+
|
|
288
|
+
Under the hood, the API server polls every 2 seconds and also uses an instant resolution mechanism — when the target agent submits a result, the waiting connection resolves immediately.
|
|
289
|
+
|
|
290
|
+
### Task Lifecycle
|
|
291
|
+
|
|
292
|
+
Tasks go through states: **pending** → **claimed** → **completed** or **failed**. Any agent that knows a task ID can claim it, which supports architectures where sub-agents handle tasks on behalf of a parent agent.
|
|
293
|
+
|
|
294
|
+
---
|
|
295
|
+
|
|
296
|
+
## Resources
|
|
297
|
+
|
|
298
|
+
The MCP server provides one resource:
|
|
299
|
+
|
|
300
|
+
| URI | Name | Description |
|
|
301
|
+
|-----|------|-------------|
|
|
302
|
+
| `agenticmail://inbox` | Agent Inbox | Browse the current agent's 20 most recent inbox messages |
|
|
303
|
+
|
|
304
|
+
---
|
|
305
|
+
|
|
306
|
+
## Example Conversation
|
|
307
|
+
|
|
308
|
+
```
|
|
309
|
+
User: Check my email and summarize anything important
|
|
310
|
+
|
|
311
|
+
AI: [calls list_inbox]
|
|
312
|
+
You have 5 new emails:
|
|
313
|
+
1. john@example.com - "Q2 Budget Review" (2 hours ago)
|
|
314
|
+
2. sarah@example.com - "Re: Project Timeline" (4 hours ago)
|
|
315
|
+
3. notifications@github.com - "[repo] PR #123 merged" (5 hours ago)
|
|
316
|
+
...
|
|
317
|
+
|
|
318
|
+
[calls read_email for #1]
|
|
319
|
+
[calls read_email for #2]
|
|
320
|
+
|
|
321
|
+
Here's a summary of the important emails:
|
|
322
|
+
|
|
323
|
+
1. **Q2 Budget Review** from John — He's requesting approval for the revised
|
|
324
|
+
budget. The total is $45K, up from $38K due to infrastructure costs.
|
|
325
|
+
He needs a response by Friday.
|
|
326
|
+
|
|
327
|
+
2. **Project Timeline** from Sarah — She confirmed the new deadline is March 15.
|
|
328
|
+
The design phase is complete and development starts Monday.
|
|
329
|
+
|
|
330
|
+
User: Reply to John saying I approve the budget
|
|
331
|
+
|
|
332
|
+
AI: [calls reply_email]
|
|
333
|
+
Reply sent to john@example.com with subject "Re: Q2 Budget Review"
|
|
334
|
+
```
|
|
335
|
+
|
|
336
|
+
---
|
|
337
|
+
|
|
338
|
+
## License
|
|
339
|
+
|
|
340
|
+
[MIT](./LICENSE) - Ope Olatunji ([@ope-olatunji](https://github.com/ope-olatunji))
|