Skip to content

Commit e866047

Browse files
committed
enterprise page for docs
1 parent d2c34b0 commit e866047

3 files changed

Lines changed: 110 additions & 1 deletion

File tree

docs/docs.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
"adding-libraries",
2828
"api-guide",
2929
"skills",
30-
"tips"
30+
"tips",
31+
"enterprise"
3132
]
3233
},
3334
{

docs/enterprise.mdx

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
---
2+
title: Enterprise
3+
sidebarTitle: Enterprise
4+
---
5+
6+
Context7 Enterprise converts your internal documentation into structured, high-quality context optimized for LLMs — enabling human developers, coding agents, and engineering leaders to build faster and operate with clarity.
7+
8+
## Core Use Cases
9+
10+
### Assist Human Developers
11+
12+
Cut onboarding time and reduce internal support load.
13+
14+
- Faster onboarding and fewer interruptions
15+
- Immediate API/service reference inside IDEs
16+
- Always-up-to-date documentation context
17+
- Reduced Slack/Teams dependency
18+
19+
### Power Coding Agents With Correct Documentation
20+
21+
Let your agents write correct code on the first try.
22+
23+
- Supply agents with accurate repo + docs context
24+
- Reduce hallucinations and incorrect API calls
25+
- Enable autonomous generation, refactoring, and analysis
26+
- Feed structured context into LangGraph/agent frameworks
27+
28+
### Engineering Management & Knowledge Governance
29+
30+
One source of truth. Zero stale docs.
31+
32+
- Enforce documentation and context rules across projects
33+
- Automatically parse APIs, RST/Sphinx, MDX, OpenAPI
34+
- Detect outdated or inconsistent sections
35+
- Maintain a single source of truth across engineering
36+
37+
## Enterprise Features
38+
39+
- **SOC 2 certified** cloud infrastructure
40+
- **SSO** (SAML / OIDC)
41+
- Unlimited seats and teams
42+
- Custom volume expansions and high-usage plans
43+
- Private GitHub / GitLab / Bitbucket repository ingestion
44+
- Professional support with response time SLA
45+
- Self-hosted deployment options available
46+
47+
## Security & Compliance
48+
49+
Context7 runs on **SOC 2 Type II** compliant infrastructure provided by [Upstash](https://upstash.com). Key security highlights include:
50+
51+
- **Privacy-first architecture** — your original prompts and code never leave your AI assistant. Only MCP-formulated search queries reach the Context7 API, and sensitive data is stripped before transmission.
52+
- **Encryption** at rest and in transit (TLS 1.2+)
53+
- **VPC isolation**, RBAC, DDoS protection, and 24/7 monitoring
54+
- **API key security** — cryptographically generated, hashed, encrypted, and rate-limited
55+
- **Enterprise SSO** — supports SAML 2.0, OAuth 2.0, and OpenID Connect (OIDC)
56+
- **GDPR compliant** with data access, deletion, and portability rights
57+
- Data stored in the US and EU with cross-border transfers following GDPR and EU-U.S. Data Privacy Framework
58+
- **ISO 27001** certification in progress
59+
- Open-source MCP server — publicly auditable at [github.com/upstash/context7](https://github.com/upstash/context7)
60+
61+
Enterprise customers can also disable query storage, use their own LLM provider for code extraction and private library ranking, and limit context retrieval to privately indexed documentation only.
62+
63+
For full details, see the [Security](/resources/security) page and the [Upstash Trust Center](https://trust.upstash.com/).
64+
65+
## Quality & Safety
66+
67+
Context7 is built with retrieval quality and trust at its core:
68+
69+
- **Benchmark-driven retrieval** — a library benchmark system generates developer-style questions and measures how effectively each library answers them. Scores are publicly visible and help prioritize better-performing libraries during retrieval.
70+
- **Trust scores** — every library receives a trust score based on repository signals (stars, activity, account age) and website signals (TLS, domain authority, backlinks). This ensures reliable, well-established libraries are surfaced first.
71+
- **Deduplication** — exact match checking and cosine similarity filtering remove redundant code snippets and overlapping documentation content.
72+
- **Version-aware parsing** — a version analyzer detects multi-version documentation structures, ensuring only current docs are stored by default while older versions remain accessible.
73+
- **Prompt injection protection** — a two-pass detection pipeline combining complementary stages blocks malicious documentation content while minimizing false positives. Pipelines are regularly updated to address evolving attack methods.
74+
- **Minimal data ingestion** — Context7 does not ingest user code, conversation history, or other sensitive data.
75+
76+
For more details, see the [Quality and Safety in Context7](https://upstash.com/blog/context7-quality-and-safety) blog post.
77+
78+
## Pricing
79+
80+
For pricing details and custom plans, [contact us](mailto:context7@upstash.com).
81+
82+
## About Upstash
83+
84+
Context7 is built by [Upstash](https://upstash.com), a serverless data platform powering 80,000+ active databases worldwide. Upstash delivers managed Redis, Vector, Queue, and Search services — processing 850+ billion requests per month with 99.99%+ uptime. Backed by Andreessen Horowitz (a16z) and headquartered in California, Upstash brings deep distributed systems expertise. Context7 follows the same engineering, reliability, and security standards.
85+
86+
## Contact
87+
88+
<CardGroup cols={2}>
89+
<Card title="Email" icon="envelope" href="mailto:context7@upstash.com">
90+
context7@upstash.com
91+
</Card>
92+
<Card title="Website" icon="globe" href="https://context7.com">
93+
context7.com
94+
</Card>
95+
</CardGroup>

docs/resources/security.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,19 @@ Cross-border data transfers comply with the EU General Data Protection Regulatio
186186
- Automatic detection and blocking of abusive patterns
187187
- Protection against DDoS and scraping attacks
188188

189+
## Prompt Injection Detection
190+
191+
Context7 indexes documentation from public and private repositories. To protect against malicious content being served to AI assistants, Context7 employs a **two-pass prompt injection detection pipeline**.
192+
193+
- **Complementary detection stages** — two independent classifiers run in sequence, combining different detection approaches to maximize coverage while minimizing false positives
194+
- **Skills.md pipeline** — a separate but related detection pipeline is used for [Skills](/skills) files, adapted to their distinct structure and intent
195+
- **Continuous monitoring** — flagged content is tracked and reviewed on an ongoing basis
196+
- **Regular updates** — classifier pipelines are updated to address evolving attack methods and new injection techniques
197+
198+
This ensures that documentation retrieved through Context7 is safe to consume by both human developers and AI coding agents.
199+
200+
For more details on how Context7 handles quality and safety, see the [Quality and Safety in Context7](https://upstash.com/blog/context7-quality-and-safety) blog post.
201+
189202
## Secure Development Practices
190203

191204
- Regular security code reviews

0 commit comments

Comments
 (0)