@trylighthouse/mcp-server 0.1.3 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/api.d.ts +2 -2
- package/build/api.js +3 -3
- package/build/index.d.ts +2 -1
- package/build/index.js +83 -1390
- package/build/server.d.ts +7 -0
- package/build/server.js +1469 -0
- package/package.json +5 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
2
|
+
/**
|
|
3
|
+
* Creates an MCP server wired to a Lighthouse API client.
|
|
4
|
+
* For stdio (local/npm): apiKey is read from LIGHTHOUSE_API_KEY env var.
|
|
5
|
+
* For HTTP (deployed): apiKey is passed from the query param per session.
|
|
6
|
+
*/
|
|
7
|
+
export declare function createServer(apiKey?: string): McpServer;
|