@modelcontextprotocol/server-threejs 0.4.1
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/README.md +110 -0
- package/dist/index.js +30583 -0
- package/dist/mcp-app.html +4256 -0
- package/dist/server.d.ts +6 -0
- package/dist/server.js +35923 -0
- package/package.json +62 -0
package/dist/server.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
2
|
+
/**
|
|
3
|
+
* Creates a new MCP server instance with tools and resources registered.
|
|
4
|
+
* Each HTTP session needs its own server instance because McpServer only supports one transport.
|
|
5
|
+
*/
|
|
6
|
+
export declare function createServer(): McpServer;
|