MCP Extensions
Want to give Mory new skills? That's what MCP is for.
What is MCP
MCP is a protocol that lets Mory connect to various external tools. Like installing plugins.
For example, install the GitHub MCP and Mory can search repos, view Issues, and create PRs.
How to Configure
- Open Settings (gear icon, top right)
- Click the "MCP" tab

- Click "Add Server"
- Fill in the info:
- Name: whatever you want
- Command: how to start it (usually
npx)
- Args: startup arguments
- Environment variables: like API keys
Example: Adding GitHub
{
"name": "github",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_TOKEN": "your-token-here"
}
}
How to Use
Once configured, Mory can automatically use the new tools.
You: Search GitHub for MoryFlow-related repos
Mory: [Using GitHub search]
Found these repos...
Available MCPs
| MCP |
What it does |
| GitHub |
Search repos, view Issues, PRs |
| Brave Search |
Use Brave search engine |
| Puppeteer |
Control a browser |
| Memory |
Give Mory longer memory |
Find more at the official MCP repository.
Management
- Each MCP can be toggled on/off individually
- Click edit button to change configuration
- Delete if you don't want it anymore
Troubleshooting
Won't start
- Check if the command is correct
- Make sure Node.js is installed
- Check environment variables
Not working
- Look at what error it shows
- Is the API key still valid?
- Is the network working?
Build Your Own
If you can code, you can write your own MCP server.
Check the official MCP documentation to learn how.