10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
export const context7 = {
|
|
type: "remote" as const,
|
|
url: "https://mcp.context7.com/mcp",
|
|
enabled: true,
|
|
headers: process.env.CONTEXT7_API_KEY
|
|
? { Authorization: `Bearer ${process.env.CONTEXT7_API_KEY}` }
|
|
: undefined,
|
|
oauth: false as const,
|
|
}
|