The repository has been renamed to better reflect its evolution into a production-ready temporal intelligence system:
Old Name: context-mcp-server
New Name: semantic-wake-intelligence-mcp
This migration guide helps existing users, contributors, and integrations update to the new repository name.
GitHub automatically redirects old URLs, but it's best to update your remote URL:
# Navigate to your local repository
cd context-mcp-server # or wherever you cloned it
# Update the remote URL
git remote set-url origin https://github.com/semanticintent/semantic-wake-intelligence-mcp.git
# Verify the change
git remote -vExpected output:
origin https://github.com/semanticintent/semantic-wake-intelligence-mcp.git (fetch)
origin https://github.com/semanticintent/semantic-wake-intelligence-mcp.git (push)
# Go up one directory level
cd ..
# Rename the directory
mv context-mcp-server semantic-wake-intelligence-mcp
# Navigate into the renamed directory
cd semantic-wake-intelligence-mcpNo action required! The package name was already @semanticintent/semantic-wake-intelligence-mcp and hasn't changed.
If you were using a git URL directly:
Old (still works due to GitHub redirect):
{
"dependencies": {
"@semanticintent/semantic-wake-intelligence-mcp": "github:semanticintent/context-mcp-server"
}
}New (recommended):
{
"dependencies": {
"@semanticintent/semantic-wake-intelligence-mcp": "github:semanticintent/semantic-wake-intelligence-mcp"
}
}Update your claude_desktop_config.json:
Old:
{
"mcpServers": {
"semantic-context": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse"
]
}
}
}New (no change needed - uses deployed URL):
{
"mcpServers": {
"wake-intelligence": {
"command": "npx",
"args": [
"mcp-remote",
"https://semantic-wake-intelligence-mcp.michshat.workers.dev/sse"
]
}
}
}The deployed worker URL remains the same: semantic-wake-intelligence-mcp.michshat.workers.dev
If you reference this repository in workflows:
Old:
- uses: actions/checkout@v4
with:
repository: semanticintent/context-mcp-serverNew:
- uses: actions/checkout@v4
with:
repository: semanticintent/semantic-wake-intelligence-mcpUpdate any README badges or documentation links:
Old:
[]New:
[]No action required! GitHub automatically updates PR URLs when repositories are renamed. Your existing PRs will continue to work.
Fork the repository using the new name:
https://github.com/semanticintent/semantic-wake-intelligence-mcp
Your wrangler.jsonc already uses the correct worker name:
No changes needed!
If you hardcoded the repository name in environment variables, update them:
Old:
REPO_NAME=context-mcp-serverNew:
REPO_NAME=semantic-wake-intelligence-mcp- Old:
context-mcp-server - New:
semantic-wake-intelligence-mcp
- Still:
@semanticintent/semantic-wake-intelligence-mcp
- Still:
semantic-wake-intelligence-mcp.michshat.workers.dev
- Still:
wake-intelligence
- All commits, branches, tags, and releases preserved
- Commit hashes unchanged
This rename coincides with the v3.0.0 release, which completes the 3-layer Wake Intelligence brain:
- ✅ Layer 1 (Past): Causality Engine - v1.0.0
- ✅ Layer 2 (Present): Memory Manager - v2.0.0
- ✅ Layer 3 (Future): Propagation Engine - v3.0.0
See CHANGELOG.md for full release notes.
GitHub automatically redirects old URLs to the new repository:
These URLs still work:
https://github.com/semanticintent/context-mcp-server
https://github.com/semanticintent/context-mcp-server/issues
https://github.com/semanticintent/context-mcp-server/pulls
They redirect to:
https://github.com/semanticintent/semantic-wake-intelligence-mcp
https://github.com/semanticintent/semantic-wake-intelligence-mcp/issues
https://github.com/semanticintent/semantic-wake-intelligence-mcp/pulls
However, it's best practice to update bookmarks and references to use the new URL directly.
Cause: Your local repository still uses the old remote URL.
Fix:
git remote set-url origin https://github.com/semanticintent/semantic-wake-intelligence-mcp.gitCause: Hardcoded old repository name in badge URLs.
Fix: Update badge URLs to use semantic-wake-intelligence-mcp instead of context-mcp-server.
Cause: Workflow files reference old repository name.
Fix: Update .github/workflows/*.yml files to use new repository name.
If you encounter any issues with the migration:
- Check the Discussions - Others may have already solved your issue
- Open an Issue - We're here to help
- Review CHANGELOG.md - See what changed in v3.0.0
- 2025-10-16: Repository renamed from
context-mcp-servertosemantic-wake-intelligence-mcp - 2025-10-16: v3.0.0 released with Layer 3 (Propagation Engine) complete
- 2025-10-16: Documentation updated with Wake Intelligence branding
Thanks for being part of the Wake Intelligence journey. The rename better reflects our evolution from a simple context server to a production-ready temporal intelligence brain for AI agents.
🧠 Past → Present → Future
{ "name": "semantic-wake-intelligence-mcp", // ... other config }