Enovari GitHub Presence Strategy
Enovari Marketing Campaign
Total Contacts
0
Completed
0
In Progress
0
Completion Rate
0%
▼
Establishing Credibility Without Exposing Source Code
0 items
▼
Table of Contents
0 items
▼
1. Executive Summary
0 items
▼
2. Public Repo Strategy (No Source Code)
4 itemsWhat to Publish (and What NOT to)
Medium
Additional Info
MCP server configuration examples and setup guides Client SDKs / API wrappers (TypeScript, Python) Integration examples (Claude Desktop, ChatGPT, Cursor, VS Code, etc.) Documentation site source (Docusaurus, MkDocs, or similar) GitHub Actions / CI templates for users who build on your API
MCP server configuration examples and setup guides Client SDKs / API wrappers (TypeScript, Python) Integration examples (Claude Desktop, ChatGPT, Cursor, VS Code, etc.) Documentation site source (Docusaurus, MkDocs, or similar) GitHub Actions / CI templates for users who build on your API
.cursor/rules and .claude/ configuration examples
Community-contributed integrations and tools
Changelog / release notes
Core server code (memory engine, search algorithms, embedding pipeline)
Database schemas or migration files from production
API keys, secrets, environment configs
Internal benchmarking tools or proprietary algorithms
Production infrastructure code (Terraform, Kubernetes configs)Recommended Repository Structure
Medium
Additional Info
Create these repos under the
Create these repos under the
enovari GitHub org:The "MCP Server" Repo — Your Star Magnet
Medium
Critical detail
The
The
LICENSE file should cover only the documentation and configuration examples (MIT is fine). Add a clear note that the Enovari server itself is proprietary software available at enovari.ai.Additional Info
The single most important repo is
The single most important repo is
mcp-server-enovari. This is what gets listed in MCP directories and what developers will find when searching. Structure:
``
mcp-server-enovari/
├── README.md # Hero README (see template below)
├── LICENSE # MIT for the config/docs, not the server
├── CHANGELOG.md # Version history
├── CONTRIBUTING.md # How to contribute examples
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.md
│ │ ├── feature_request.md
│ │ └── integration_request.md
│ └── workflows/
│ └── validate-configs.yml # CI that validates config examples
├── configs/
│ ├── claude-desktop/
│ │ └── claude_desktop_config.json
│ ├── cursor/
│ │ └── .cursor/mcp.json
│ ├── chatgpt/
│ │ └── setup-guide.md
│ ├── vscode/
│ │ └── settings.json
│ └── windsurf/
│ └── mcp_config.json
├── examples/
│ ├── basic-memory/
│ │ └── README.md
│ ├── persona-system/
│ │ └── README.md
│ ├── cross-platform-sync/
│ │ └── README.md
│ └── api-integrations/
│ └── README.md
├── docker/
│ ├── docker-compose.yml # If you offer self-hosted option
│ └── README.md
├── docs/
│ ├── quickstart.md
│ ├── authentication.md
│ ├── api-reference.md
│ ├── memory-concepts.md
│ ├── personas.md
│ └── troubleshooting.md
└── assets/
├── logo.svg
├── banner.png
├── demo.gif # Animated GIF showing Enovari in action
└── screenshots/
├── claude-desktop.png
├── cursor-integration.png
└── memory-dashboard.png
``What Makes a Repo "Star-Worthy"
Medium
Additional Info
Based on patterns from the most-starred repos: 1. Immediate visual impact — Logo, badges, animated GIF or screenshot in the first viewport 2. One-command setup —
Based on patterns from the most-starred repos: 1. Immediate visual impact — Logo, badges, animated GIF or screenshot in the first viewport 2. One-command setup —
npx enovari-setup or a single JSON config paste
3. Clear value proposition — First line answers "why should I care?"
4. Active maintenance signals — Recent commits, closed issues, version badges
5. Social proof — "Used by X developers" or "Integrates with Claude, ChatGPT, Cursor..."
6. Copy-paste ready — Config snippets with syntax highlighting that work immediately
▼
3. GitHub Organization Setup
8 itemsOrganization vs Personal Account
Medium
Recommendation
Create the organization. It's free and immediately signals "this is a real product, not a hobby project."
Organization Setup Checklist
Medium
Additional Info
1. Create org:
1. Create org:
github.com/enovari
Display name: "Enovari"
Bio: "Persistent, portable AI memory across every platform. Your AI forgets everything. Enovari remembers."
URL: https://enovari.ai
Avatar: Enovari logo (square, at least 500x500px, works at small sizes)
Location: (optional — adds legitimacy if included)
Email: hello@enovari.ai or support@enovari.ai
2. Create .github repository for org-level profile:
File: .github/profile/README.md — this is the org's "landing page"
This README shows on github.com/enovari when anyone visits
3. Pin repositories (up to 6):
mcp-server-enovari (the star magnet)
enovari-examples
enovari-js
enovari-python
docs
awesome-ai-memory`
4. Configure org settings:
Enable GitHub Discussions on the main repo
Set up issue templates
Enable GitHub Pages on docs repo
Add social preview images (1280x640px) to all reposOrganization Profile README
Medium
Additional Info
The
The
.github repo's profile/README.md appears on your org page. Template:
```markdown
<p align="center">
<img src="https://enovari.ai/logo.svg" width="120" alt="Enovari" />
</p>
<h3 align="center">Persistent AI Memory Across Every Platform</h3>
<p align="center">
<em>Your AI forgets everything. Enovari remembers.</em>
</p>
<p align="center">
<a href="https://enovari.ai">Website</a> •
<a href="https://github.com/enovari/mcp-server-enovari">MCP Server</a> •
<a href="https://github.com/enovari/docs">Documentation</a> •
<a href="https://github.com/enovari/enovari-examples">Examples</a>
</p>What is Enovari?
Medium
Additional Info
Enovari gives AI assistants persistent, structured memory that works across sessions, platforms, and tools. Connect once, and your AI remembers everything — your preferences, your projects, your context.
Enovari gives AI assistants persistent, structured memory that works across sessions, platforms, and tools. Connect once, and your AI remembers everything — your preferences, your projects, your context.
Works With
Medium
Quick Start
Medium
Additional Info
Add Enovari to Claude Desktop in 30 seconds: ``
Add Enovari to Claude Desktop in 30 seconds: ``
json
{
"mcpServers": {
"enovari": {
"command": "npx",
"args": ["-y", "mcp-server-enovari"],
"env": {
"ENOVARI_API_KEY": "your-api-key"
}
}
}
}
``
Get your API key at [enovari.ai](https://enovari.ai)Repositories
Medium
Making a Solo Founder Look Like a Team
Medium
Additional Info
Appearance matters. Strategies: Use "we" language in all READMEs and docs ("We built Enovari to...") GitHub Bot accounts are legitimate — set up
Appearance matters. Strategies: Use "we" language in all READMEs and docs ("We built Enovari to...") GitHub Bot accounts are legitimate — set up
enovari-bot for automated commits (changelog updates, version bumps)
Community contributors count — even one person submitting a typo fix shows on the contributors list
Invite early users as collaborators on the examples repo
Use GitHub Actions for automated activity (daily config validation, weekly changelog updates)
GitHub Sponsors badge signals an established project
▼
4. GitHub as Marketing
6 itemsGitHub Stars = Social Proof
Medium
Additional Info
Stars are the developer world's equivalent of social media followers. They signal: "This project is worth looking at" "Other developers trust this" "This is actively maintained" 0-50 stars: Invisible. No credibility signal. 50-200 stars: Shows up in "similar projects" recommendations. Minimally credible. 200-500 stars: Appears in GitHub Explore recommendations. Considered noteworthy. 500-1000 stars: Serious credibility. Shows up in roundup articles and lists. 1000+: Established project. Self-sustaining discovery through GitHub's algorithms. 1. Post to relevant subreddits (r/ClaudeAI, r/ChatGPTPro, r/LocalLLaMA, r/MCP) when you launch the repo 2. Share on X/Twitter with demo GIFs 3. Ask early users/beta testers to star the repo 4. Submit to awesome lists (each listing drives 10-50 stars) 5. Write a "Show HN" post on Hacker News when ready 6. Create genuinely useful content that people want to bookmark (the awesome list strategy) 7. Cross-promote from your website ("Star us on GitHub" button) 8. Include "If Enovari is useful to you, consider giving us a star" in the README footer Buy stars (GitHub detects and penalizes this) Use star-for-star exchange groups Create fake accounts to star your repo
Stars are the developer world's equivalent of social media followers. They signal: "This project is worth looking at" "Other developers trust this" "This is actively maintained" 0-50 stars: Invisible. No credibility signal. 50-200 stars: Shows up in "similar projects" recommendations. Minimally credible. 200-500 stars: Appears in GitHub Explore recommendations. Considered noteworthy. 500-1000 stars: Serious credibility. Shows up in roundup articles and lists. 1000+: Established project. Self-sustaining discovery through GitHub's algorithms. 1. Post to relevant subreddits (r/ClaudeAI, r/ChatGPTPro, r/LocalLLaMA, r/MCP) when you launch the repo 2. Share on X/Twitter with demo GIFs 3. Ask early users/beta testers to star the repo 4. Submit to awesome lists (each listing drives 10-50 stars) 5. Write a "Show HN" post on Hacker News when ready 6. Create genuinely useful content that people want to bookmark (the awesome list strategy) 7. Cross-promote from your website ("Star us on GitHub" button) 8. Include "If Enovari is useful to you, consider giving us a star" in the README footer Buy stars (GitHub detects and penalizes this) Use star-for-star exchange groups Create fake accounts to star your repo
Awesome Lists Strategy
Medium
Additional Info
Awesome lists are curated directories on GitHub that developers use to discover tools. Getting listed drives sustained traffic and stars. Read the contribution guidelines carefully Follow the exact format of existing entries Keep descriptions concise (one line) Include only stable, working links Don't submit to the same list twice Wait until your repo has at least a solid README before submitting ``
Awesome lists are curated directories on GitHub that developers use to discover tools. Getting listed drives sustained traffic and stars. Read the contribution guidelines carefully Follow the exact format of existing entries Keep descriptions concise (one line) Include only stable, working links Don't submit to the same list twice Wait until your repo has at least a solid README before submitting ``
markdown
[Enovari](https://github.com/enovari/mcp-server-enovari) - Persistent, portable AI memory across sessions and platforms. Cross-session recall, persona system, 140+ API integrations.
``GitHub Discussions as Community Forum
Medium
Additional Info
Enable GitHub Discussions on
Enable GitHub Discussions on
mcp-server-enovari. This is free, indexed by Google, and keeps community interaction tied to your GitHub presence.
Google indexes Discussions (SEO value)
Reduces support burden (searchable Q&A)
Creates sense of active community
Contributors appear on your org page
Discussion count shows on repo pageGitHub Pages for Documentation
Medium
Additional Info
Use GitHub Pages to host documentation at
Use GitHub Pages to host documentation at
enovari.github.io/docs or configure a custom domain like docs.enovari.ai.
Docusaurus (by Meta) — Best for product docs. Used by many MCP-related projects.
Repo: github.com/facebook/docusaurus
Versioned docs, search, blog, i18n built-in
MkDocs Material — Python-based, simpler. Beautiful defaults.
Repo: github.com/squidfunk/mkdocs-material
Mintlify — Designed specifically for API docs. Beautiful out of the box.
URL: mintlify.com
``yaml
# .github/workflows/deploy-docs.yml
name: Deploy Documentation
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
uses: actions/checkout@v4
uses: actions/setup-node@v4
with:
node-version: 20
run: npm ci
run: npm run build
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
``GitHub Actions for Public CI/CD Badges
Medium
Additional Info
Even without source code, you can use GitHub Actions to create "activity signals": 1. Config validation — CI that validates all example config files are valid JSON/YAML 2. Link checking — Automated checks that all docs links are live 3. API health check — Scheduled workflow that pings enovari.ai API and updates a status badge 4. Changelog generation — Auto-generate changelog from PR titles 5. SDK tests — If you publish SDKs, run their test suites publicly ``
Even without source code, you can use GitHub Actions to create "activity signals": 1. Config validation — CI that validates all example config files are valid JSON/YAML 2. Link checking — Automated checks that all docs links are live 3. API health check — Scheduled workflow that pings enovari.ai API and updates a status badge 4. Changelog generation — Auto-generate changelog from PR titles 5. SDK tests — If you publish SDKs, run their test suites publicly ``
markdown
[](https://enovari.ai)
[](https://npmjs.com/package/mcp-server-enovari)
[](https://discord.gg/enovari)
[](https://github.com/enovari/mcp-server-enovari)
[](LICENSE)
``Contributing to Related Open-Source Projects
Medium
Additional Info
High-visibility strategy: contribute to projects your potential users already use. Every contribution links back to your GitHub profile, which links to your org, which links to Enovari.
High-visibility strategy: contribute to projects your potential users already use. Every contribution links back to your GitHub profile, which links to your org, which links to Enovari.
▼
5. GitHub SEO & Discoverability
6 itemsHow GitHub Repos Rank in Google
Medium
Additional Info
GitHub repos rank extremely well in Google because: GitHub has massive domain authority (DA 95+) READMEs are crawled as the page content Repo metadata (description, topics) become meta tags Stars correlate with higher rankings Regular commits signal fresh content Repository main page (README) All markdown files in the repo GitHub Discussions threads GitHub Pages sites Issue titles and bodies Wiki pages
GitHub repos rank extremely well in Google because: GitHub has massive domain authority (DA 95+) READMEs are crawled as the page content Repo metadata (description, topics) become meta tags Stars correlate with higher rankings Regular commits signal fresh content Repository main page (README) All markdown files in the repo GitHub Discussions threads GitHub Pages sites Issue titles and bodies Wiki pages
Optimal Repository Naming
Medium
Primary repo
mcp-server-enovariAdditional Info
Follows the
Follows the
mcp-server-{name} convention used across the MCP ecosystem
This exact pattern is what MCP directories search for
Google searches for "mcp server memory" will surface this
enovari-docs — Captures "enovari documentation" searches
enovari-examples — Captures "enovari examples" or "enovari setup" searches
awesome-ai-memory — Captures "ai memory tools" searches (massive SEO play)Repository Description Optimization
Medium
Additional Info
The GitHub repo description appears in: Google search results (as meta description) GitHub search results GitHub Explore pages Social media previews (Open Graph) Front-load keywords ("MCP server", "AI memory", "persistent") Include platform names people search for ("Claude", "ChatGPT", "Cursor") Stay under 350 characters (GitHub's display limit) No emojis in descriptions (they don't render in search results)
The GitHub repo description appears in: Google search results (as meta description) GitHub search results GitHub Explore pages Social media previews (Open Graph) Front-load keywords ("MCP server", "AI memory", "persistent") Include platform names people search for ("Claude", "ChatGPT", "Cursor") Stay under 350 characters (GitHub's display limit) No emojis in descriptions (they don't render in search results)
GitHub Topics
Medium
Additional Info
Topics are GitHub's tagging system. They drive discoverability through: Topic browse pages (
Topics are GitHub's tagging system. They drive discoverability through: Topic browse pages (
github.com/topics/mcp)
GitHub search filters
"Related repositories" suggestions
GitHub Explore recommendations
``
mcp
mcp-server
model-context-protocol
ai-memory
persistent-memory
claude
chatgpt
cursor
ai-assistant
llm
ai-tools
developer-tools
memory
context
api
`
`
awesome
awesome-list
ai-memory
llm-memory
persistent-memory
ai-tools
mcp
rag
vector-database
ai-agents
`
Maximum 20 topics per repo
Mix high-volume topics (ai, llm, developer-tools) with specific ones (mcp-server, ai-memory)
Check existing topic pages to see competition: github.com/topics/mcp-server
Create the enovari` topic and use it across all your reposAppearing in GitHub Explore and Trending
Medium
Additional Info
GitHub Trending (
GitHub Trending (
github.com/trending) shows repos with the most stars gained in a period. To appear:
Coordinate a launch day (post to HN, Reddit, X, Discord all at once)
Aim for 30+ stars in a single day to trend in a language category
Trending in "All Languages" requires 100+ stars/day
GitHub Explore (github.com/explore) is curated and algorithmic:
Having 100+ stars helps
Active maintenance (recent commits) is required
Good README quality signals
Relevant topics help categorization
You can submit collections: github.com/explore/submitSocial Preview Images
Medium
Additional Info
Every repo should have a custom social preview image (1280x640px). This appears when someone shares the GitHub link on: X/Twitter LinkedIn Discord Slack Reddit Left side: Enovari logo Center: Repo name and one-line description Right side: Key feature icons or platform logos Background: Dark, clean, matching enovari.ai branding Tools: Canva, Figma, or any design tool Set via: Repo Settings > Social Preview > Edit > Upload image
Every repo should have a custom social preview image (1280x640px). This appears when someone shares the GitHub link on: X/Twitter LinkedIn Discord Slack Reddit Left side: Enovari logo Center: Repo name and one-line description Right side: Key feature icons or platform logos Background: Dark, clean, matching enovari.ai branding Tools: Canva, Figma, or any design tool Set via: Repo Settings > Social Preview > Edit > Upload image
▼
6. Case Studies: Closed-Source Products with Great GitHub Presence
12 itemsCursor
Medium
Model
IDE with AI features (closed source core)
Lesson for Enovari
You don't need code to get stars. A well-maintained issue tracker with responsive maintainers drives stars.
Additional Info
The repo is essentially a feature-request and bug-tracking hub README has a beautiful hero image and clear product description GitHub Issues are the primary feedback mechanism Thousands of issues/discussions create organic SEO They use GitHub releases to publish changelogs Stars are massive despite having zero source code in the repo
The repo is essentially a feature-request and bug-tracking hub README has a beautiful hero image and clear product description GitHub Issues are the primary feedback mechanism Thousands of issues/discussions create organic SEO They use GitHub releases to publish changelogs Stars are massive despite having zero source code in the repo
Notion
Medium
Model
Productivity tool (fully closed source)
Lesson for Enovari
Publish real, functional SDKs. Even a thin API wrapper is enough to justify a repo.
Additional Info
SDKs are the public-facing repos (actual useful code) Clean API documentation Active issue management on SDK repos Community creates additional repos that reference Notion
SDKs are the public-facing repos (actual useful code) Clean API documentation Active issue management on SDK repos Community creates additional repos that reference Notion
Linear
Medium
Model
Project management tool (closed source)
Additional Info
Org page is clean and professional Main repo is for community feedback SDK packages are published to npm Active GitHub Discussions
Org page is clean and professional Main repo is for community feedback SDK packages are published to npm Active GitHub Discussions
Raycast
Medium
Model
Productivity launcher for Mac (closed source core)
Lesson for Enovari
Open-source complementary tools (e.g., a memory visualization tool, an MCP config validator) while keeping the core proprietary.
Open-source complementary tools (e.g., a memory visualization tool, an MCP config validator) while keeping the core proprietary.
Additional Info
Extensions repo is a massive community contribution magnet Open-sourced complementary tools (not the core product) Beautiful org profile page Multiple repos showing activity Community contributions make the org look large and active
Extensions repo is a massive community contribution magnet Open-sourced complementary tools (not the core product) Beautiful org profile page Multiple repos showing activity Community contributions make the org look large and active
Supabase
Medium
Model
Backend-as-a-Service (open core, but relevant model)
Lesson for Enovari
A comparison section ("Enovari vs mem0 vs MemGPT vs Zep") in the README is extremely effective.
Additional Info
Main repo README is a masterclass in conversion Beautiful comparison tables ("Supabase vs Firebase") Multi-language SDK repos Active community (thousands of contributors) GitHub Sponsors enabled
Main repo README is a masterclass in conversion Beautiful comparison tables ("Supabase vs Firebase") Multi-language SDK repos Active community (thousands of contributors) GitHub Sponsors enabled
Vercel
Medium
Model
Deployment platform (proprietary core)
Lesson for Enovari
Open-sourcing a useful framework or tool adjacent to your core product is the ultimate GitHub marketing strategy. Consider open-sourcing an "MCP memory toolkit" or "MCP testing framework."
Open-sourcing a useful framework or tool adjacent to your core product is the ultimate GitHub marketing strategy. Consider open-sourcing an "MCP memory toolkit" or "MCP testing framework."
Anthropic (Claude)
Medium
Model
AI company (closed model, open tools)
Lesson for Enovari
Cookbooks and examples repos get massive stars. An "Enovari Cookbook" repo with copy-paste workflows would be very effective.
Cookbooks and examples repos get massive stars. An "Enovari Cookbook" repo with copy-paste workflows would be very effective.
OpenAI
Medium
Model
AI company (closed model, open tools)
Lesson for Enovari
The cookbook format (collection of how-to guides with working code) is enormously popular.
Mem0
Medium
Model
Direct competitor — AI memory (open core)
Lesson for Enovari
This is the benchmark to beat. Study their README structure closely. Note: they open-sourced the core, but Enovari can achieve similar visibility with docs/SDKs alone — it just requires more effort in other areas.
This is the benchmark to beat. Study their README structure closely. Note: they open-sourced the core, but Enovari can achieve similar visibility with docs/SDKs alone — it just requires more effort in other areas.
Additional Info
Massive README with badges, GIFs, comparison tables "Quickstart in 5 lines of code" right in the README Active community engagement Listed in every relevant awesome list Regular releases with changelogs
Massive README with badges, GIFs, comparison tables "Quickstart in 5 lines of code" right in the README Active community engagement Listed in every relevant awesome list Regular releases with changelogs
Zep
Medium
Model
AI memory infrastructure (open core)
Additional Info
Clean, professional README Good documentation Active in AI memory community
Clean, professional README Good documentation Active in AI memory community
Mintlify
Medium
Model
Documentation platform (closed source)
Additional Info
Open-sourced their documentation components Main product is proprietary Users create repos using their tools (viral spread)
Open-sourced their documentation components Main product is proprietary Users create repos using their tools (viral spread)
PostHog
Medium
Model
Product analytics (open core)
Additional Info
Extremely transparent development (public roadmap) Active social media linking to GitHub Multiple satellite repos for integrations
Extremely transparent development (public roadmap) Active social media linking to GitHub Multiple satellite repos for integrations
▼
7. MCP Server Directory Listings
5 itemsThe MCP Ecosystem on GitHub
Medium
Additional Info
The Model Context Protocol ecosystem is rapidly growing. Being listed in directories is the single highest-ROI activity for MCP server discovery.
The Model Context Protocol ecosystem is rapidly growing. Being listed in directories is the single highest-ROI activity for MCP server discovery.
Primary Directories to Target
Medium
Maintained by
Anthropic / MCP core team
Stars
~5,000+
Category for Enovari
"Knowledge & Memory" or similar
How to get listed
Submit through their platform
Directory 1: Official MCP Servers Repository
URL:
URL:
github.com/modelcontextprotocol/servers
Maintained by: Anthropic / MCP core team
Stars: ~15,000+ (as of early 2025, likely 25,000+ by now)
How to get listed:
Add your server to the "Community Servers" section of the README
Submit a Pull Request following their contribution format
Your server must implement the MCP protocol correctly
Include: name, one-line description, link to repo
Format example:
``markdown
[Enovari](https://github.com/enovari/mcp-server-enovari) - Persistent, portable AI memory with cross-session recall, personas, and 140+ API integrations.
``
Priority: HIGHEST — This is the canonical directoryDirectory 2: awesome-mcp-servers (punkpeye)
URL:
URL:
github.com/punkpeye/awesome-mcp-servers
Stars: ~10,000+ (one of the most popular MCP lists)
How to get listed:
Submit a Pull Request
Follow the awesome-list format
Your server must be functional and documented
Category for Enovari: "Knowledge & Memory" or similar
Priority: HIGHDirectory 3: awesome-mcp-servers (wong2)
URL:
URL:
github.com/wong2/awesome-mcp-servers
Stars: ~5,000+
How to get listed: Pull Request following their format
Priority: HIGHDirectory 4: MCP Hub / mcp.so
URL:
URL:
mcp.so (web directory)
How to get listed: Submit through their website
Priority: HIGH — Web-based discovery, separate from GitHubDirectory 5: Smithery
URL:
URL:
smithery.ai
How to get listed: Register and submit your MCP server
Priority: HIGH — Growing MCP marketplaceDirectory 6: Glama MCP Directory
URL:
URL:
glama.ai/mcp/servers
How to get listed: Submit through their platform
Priority: MEDIUMMCP Naming Convention
Medium
Additional Info
The MCP ecosystem has a strong naming convention:
The MCP ecosystem has a strong naming convention:
mcp-server-{name}. Following this is critical:
Repo name: mcp-server-enovari
npm package: mcp-server-enovari
This naming convention is how directories, tools, and developers find MCP servers
GitHub search for mcp-server- returns thousands of results — you want to be in that listMCP Server README Requirements
Medium
Additional Info
Most directories require your repo README to include: 1. What the server does (one paragraph) 2. Installation instructions (copy-paste ready) 3. Configuration for Claude Desktop (JSON snippet) 4. Available tools (table of tool names + descriptions) 5. Available resources (if any) 6. Authentication (how to get API key) 7. Example usage (at least one concrete example)
Most directories require your repo README to include: 1. What the server does (one paragraph) 2. Installation instructions (copy-paste ready) 3. Configuration for Claude Desktop (JSON snippet) 4. Available tools (table of tool names + descriptions) 5. Available resources (if any) 6. Authentication (how to get API key) 7. Example usage (at least one concrete example)
npm / PyPI Publishing
Medium
Additional Info
Many MCP servers are installed via
Many MCP servers are installed via
npx mcp-server-{name}. Publishing to npm:
Makes installation trivially easy
Gets your package indexed in npm search
Allows npx one-command setup (the standard in MCP ecosystem)
Adds a version badge to your README
The npm package can be a thin wrapper/installer that connects to your cloud service — it doesn't need to contain the actual server logic if Enovari runs as a hosted service.
▼
8. Implementation Roadmap
5 itemsPhase 1: Foundation (Week 1-2)
Medium
Phase 2: Content (Week 2-4)
Medium
Phase 3: SDKs & Distribution (Week 4-6)
Medium
Phase 4: Growth & Community (Week 6-12)
Medium
Phase 5: Amplification (Ongoing)
Medium
▼
9. README Templates
1 itemsHero README for `mcp-server-enovari`
Medium
Additional Info
```markdown <div align="center"> <img src="assets/logo.svg" width="100" alt="Enovari" /> # Enovari MCP Server Persistent, portable AI memory across every platform. Your AI forgets everything. Enovari remembers. [](https://npmjs.com/package/mcp-server-enovari) [](https://enovari.ai) [](https://github.com/enovari/mcp-server-enovari/stargazers) [](https://discord.gg/enovari) [](LICENSE) [Website](https://enovari.ai) • [Documentation](https://docs.enovari.ai) • [Examples](https://github.com/enovari/enovari-examples) • [Discord](https://discord.gg/enovari) <img src="assets/demo.gif" width="700" alt="Enovari Demo" /> </div>
```markdown <div align="center"> <img src="assets/logo.svg" width="100" alt="Enovari" /> # Enovari MCP Server Persistent, portable AI memory across every platform. Your AI forgets everything. Enovari remembers. [](https://npmjs.com/package/mcp-server-enovari) [](https://enovari.ai) [](https://github.com/enovari/mcp-server-enovari/stargazers) [](https://discord.gg/enovari) [](LICENSE) [Website](https://enovari.ai) • [Documentation](https://docs.enovari.ai) • [Examples](https://github.com/enovari/enovari-examples) • [Discord](https://discord.gg/enovari) <img src="assets/demo.gif" width="700" alt="Enovari Demo" /> </div>
▼
Why Enovari?
9 itemsCross-platform memory
Medium
Feature
Cross-platform memory
ChatGPT Memory
❌
Custom prompts
❌
Enovari
✅
✅
Cross-session persistence
Medium
Feature
Cross-session persistence
ChatGPT Memory
Partial
Custom prompts
❌
Enovari
✅
✅
Structured recall (search)
Medium
Feature
Structured recall (search)
ChatGPT Memory
❌
Custom prompts
❌
Enovari
✅
✅
Persona system
Medium
Feature
Persona system
ChatGPT Memory
❌
Custom prompts
❌
Enovari
✅
✅
140+ API integrations
Medium
Feature
140+ API integrations
ChatGPT Memory
❌
Custom prompts
❌
Enovari
✅
✅
Works with Claude
Medium
Feature
Works with Claude
ChatGPT Memory
❌
Custom prompts
✅
Enovari
✅
✅
Works with ChatGPT
Medium
Feature
Works with ChatGPT
ChatGPT Memory
✅
Custom prompts
✅
Enovari
✅
✅
Works with Cursor
Medium
Feature
Works with Cursor
ChatGPT Memory
❌
Custom prompts
✅
Enovari
✅
✅
MCP native
Medium
Feature
MCP native
ChatGPT Memory
❌
Custom prompts
❌
Enovari
✅
✅
▼
Quick Start
3 itemsClaude Desktop
Medium
Additional Info
Add to your
Add to your
claude_desktop_config.json:
``json
{
"mcpServers": {
"enovari": {
"command": "npx",
"args": ["-y", "mcp-server-enovari"],
"env": {
"ENOVARI_API_KEY": "your-api-key"
}
}
}
}
``Cursor
Medium
Additional Info
Add to
Add to
.cursor/mcp.json:
``json
{
"mcpServers": {
"enovari": {
"command": "npx",
"args": ["-y", "mcp-server-enovari"],
"env": {
"ENOVARI_API_KEY": "your-api-key"
}
}
}
}
``Other Platforms
Medium
Additional Info
See setup guides for [ChatGPT](docs/chatgpt.md) • [VS Code](docs/vscode.md) • [Windsurf](docs/windsurf.md) • [Continue](docs/continue.md) > Get your API key: Sign up at [enovari.ai](https://enovari.ai) (free tier available)
See setup guides for [ChatGPT](docs/chatgpt.md) • [VS Code](docs/vscode.md) • [Windsurf](docs/windsurf.md) • [Continue](docs/continue.md) > Get your API key: Sign up at [enovari.ai](https://enovari.ai) (free tier available)
▼
Available Tools
0 items
▼
How It Works
0 items
▼
Examples
0 items
▼
Documentation
0 items
▼
Community
0 items
▼
Contributing
0 items
▼
License
1 itemsREADME for `awesome-ai-memory`
Medium
Additional Info
Creating and maintaining an "awesome list" is one of the highest-ROI GitHub strategies. It positions Enovari as the authority in the AI memory space. ```markdown # Awesome AI Memory [](https://awesome.re) > A curated list of tools, frameworks, and research for giving AI assistants persistent memory. AI assistants forget everything between conversations. This list tracks the projects solving that problem.
Creating and maintaining an "awesome list" is one of the highest-ROI GitHub strategies. It positions Enovari as the authority in the AI memory space. ```markdown # Awesome AI Memory [](https://awesome.re) > A curated list of tools, frameworks, and research for giving AI assistants persistent memory. AI assistants forget everything between conversations. This list tracks the projects solving that problem.
▼
Contents
0 items
▼
MCP Memory Servers
0 items
▼
Memory Frameworks
0 items
▼
Vector Databases
0 items
▼
Research Papers
0 items
▼
Contributing
0 items
▼
Key Takeaways
0 items10. Appendix: All URLs & Resources
10.1 MCP Directories to Submit To
| Directory | URL | Type |
| Official MCP Servers | github.com/modelcontextprotocol/servers | GitHub repo |
| awesome-mcp-servers (punkpeye) | github.com/punkpeye/awesome-mcp-servers | GitHub repo |
| awesome-mcp-servers (wong2) | github.com/wong2/awesome-mcp-servers | GitHub repo |
| MCP Hub | mcp.so | Web directory |
| Smithery | smithery.ai | Web marketplace |
| Glama MCP | glama.ai/mcp/servers | Web directory |
| MCP Directory (various) | Search GitHub for "mcp-directory" | Multiple |
| List | URL | Category for Enovari |
| awesome-ai-tools | github.com/mahseema/awesome-ai-tools | AI Tools / Memory |
| awesome-llm-apps | github.com/Shubhamsaboo/awesome-llm-apps | Tools / Infrastructure |
| awesome-generative-ai | Search for active repos | Developer Tools |
| awesome-ai-agents | Search for active repos | Memory / Infrastructure |
| awesome-chatgpt | Various repos | Plugins / Extensions |
| awesome-claude | Search for active repos | MCP Servers |
| Tool | URL | Best For |
| Docusaurus | docusaurus.io | Full-featured product docs |
| MkDocs Material | squidfunk.github.io/mkdocs-material | Clean Python-based docs |
| Mintlify | mintlify.com | Beautiful API documentation |
| GitBook | gitbook.com | Quick wiki-style docs |
| Nextra | nextra.site | Next.js-based docs |
| Service | URL | Use Case |
| Shields.io | shields.io | Standard repo badges |
| Badgen | badgen.net | Alternative badge service |
| GitHub Actions Badges | Built-in | CI/CD status |
| Custom endpoint badges | Shields.io endpoint API | API status, custom metrics |
| Tool | URL | Use Case |
| Canva | canva.com | Quick social preview images |
| Figma | figma.com | Professional design |
| Carbon | carbon.now.sh | Beautiful code screenshots |
| Terminalizer | github.com/faressoft/terminalizer | Terminal session GIFs |
| VHS | github.com/charmbracelet/vhs | Terminal GIF recording |
| Asciinema | asciinema.org | Terminal session recording |
| Company | Primary Repo | URL |
| Mem0 | mem0ai/mem0 | github.com/mem0ai/mem0 |
| Zep | getzep/zep | github.com/getzep/zep |
| MemGPT / Letta | cpacker/MemGPT | github.com/cpacker/MemGPT |
| LangChain | langchain-ai/langchain | github.com/langchain-ai/langchain |
| LlamaIndex | run-llama/llama_index | github.com/run-llama/llama_index |
| Feature | How to Enable | URL |
| GitHub Discussions | Repo Settings > Features > Discussions | Built-in |
| GitHub Pages | Repo Settings > Pages | Built-in |
| GitHub Actions | Add .github/workflows/*.yml | Built-in |
| GitHub Releases | Create via UI or gh release create | Built-in |
| GitHub Projects | Org-level or repo-level boards | Built-in |
| Social Preview | Repo Settings > Social Preview | Built-in |
| Topics | Repo main page > gear icon near About | Built-in |
| GitHub Sponsors | github.com/sponsors | Requires application |
| GitHub Explore submission | github.com/explore/submit | Manual |
| Community | URL | Rules |
| r/ClaudeAI | reddit.com/r/ClaudeAI | Check self-promotion rules |
| r/ChatGPTPro | reddit.com/r/ChatGPTPro | Check self-promotion rules |
| r/LocalLLaMA | reddit.com/r/LocalLLaMA | Technical audience |
| r/MachineLearning | reddit.com/r/MachineLearning | Strict rules, high value |
| r/artificial | reddit.com/r/artificial | General AI community |
| Hacker News | news.ycombinator.com | "Show HN" format |
| Product Hunt | producthunt.com | Schedule a launch day |
| Dev.to | dev.to | Write a launch article |
| AI Discord servers | Various | Search for AI/MCP discords |