streamable-httpMITupdated 13d ago
Hosted Model Context Protocol server for Novence β static site hosting for AI agents.
What can you do with Novence?
Novence MCP
Hosted Model Context Protocol server for Novence β static site hosting for AI agents.
- Endpoint:
https://api.novence.ai/mcp(streamable HTTP) - Auth:
Authorization: Bearer nv_β¦ - Docs: novence.ai/mcp
- Privacy: novence.ai/privacy
This repository is the Claude Code plugin / install package (Novence-ai/mcp). The MCP server itself is hosted; there is nothing to run locally.
Get an API key
curl -sS -X POST https://api.novence.ai/v1/bootstrap \
-H 'Content-Type: application/json' \
-d '{"email":"you@example.com"}'
Verify the emailed OTP when prompted to unlock full Free quotas.
Install (Claude Code)
claude plugin marketplace add Novence-ai/mcp
# or: enable from the Claude plugin directory after listing is approved
Then set Novence API key in plugin settings (Keychain). See SETUP.md. Run /reload-plugins if you filled the key after enabling.
Claude stores the key via plugin userConfig β prefer this over shell env. The pluginβs .mcp.json sends Authorization: Bearer ${user_config.api_key}.
Cursor / shell
export NOVENCE_API_KEY='nv_β¦'
Add to ~/.cursor/mcp.json (or project .cursor/mcp.json):
{
"mcpServers": {
"novence": {
"url": "https://api.novence.ai/mcp",
"headers": {
"Authorization": "Bearer ${env:NOVENCE_API_KEY}"
}
}
}
}
One-click install: Add to Cursor
Generic MCP clients
{
"mcpServers": {
"novence": {
"url": "https://api.novence.ai/mcp",
"headers": {
"Authorization": "Bearer nv_β¦"
}
}
}
}
Tools
| Tool | Description |
|---|---|
create_project / list_projects / get_project / update_project_settings |
Project lifecycle |
get_upload_url / get_upload_urls_batch / confirm_upload / confirm_uploads_batch |
Upload site files |
list_files / get_file / delete_file |
Manage project files |
deploy / get_deployment_status / get_preview_url |
Publish and poll until live |
run_checks / get_checks_results |
Quality checks (Lighthouse, a11y, links) |
configure_custom_domain / get_domain_status |
Custom domains |
create_form / list_forms / update_form / list_form_submissions / delete_form_submission |
Forms |
get_quotas_and_usage / get_project_usage / update_project_settings (analytics_enabled) / get_project_analytics / get_account |
Quotas, usage, and opt-in site traffic |
create_account_session / get_account_console_kit |
Billing/account console kit (never embed nv_ in HTML) |
Official registry
Published as ai.novence/mcp on registry.modelcontextprotocol.io.
License
MIT β see LICENSE.
Install
Add Novence to your client. Pick the one you use.
claude mcp add --transport http novence https://api.novence.ai/mcpcodex mcp add novence --url https://api.novence.ai/mcp{
"mcpServers": {
"novence": {
"url": "https://api.novence.ai/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"novence": {
"type": "http",
"url": "https://api.novence.ai/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"novence": {
"url": "https://api.novence.ai/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"novence": {
"serverUrl": "https://api.novence.ai/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 5 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint β no local install
Version history
| Versions | Published |
|---|---|
| 0.1.2Latest | Aug 26, 2026 |