@modelcontextprotocol/server-map 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 +92 -0
- package/dist/index.js +30579 -0
- package/dist/mcp-app.html +172 -0
- package/dist/server.d.ts +13 -0
- package/dist/server.js +35898 -0
- package/package.json +55 -0
package/dist/server.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CesiumJS Map MCP Server
|
|
3
|
+
*
|
|
4
|
+
* Provides tools for:
|
|
5
|
+
* - geocode: Search for places using OpenStreetMap Nominatim
|
|
6
|
+
* - show-map: Display an interactive 3D globe at a given location
|
|
7
|
+
*/
|
|
8
|
+
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
9
|
+
/**
|
|
10
|
+
* Creates a new MCP server instance with tools and resources registered.
|
|
11
|
+
* Each HTTP session needs its own server instance because McpServer only supports one transport.
|
|
12
|
+
*/
|
|
13
|
+
export declare function createServer(): McpServer;
|