Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| NEBULA_HOST | Yes | Your NebulaGraph server host | |
| NEBULA_PORT | Yes | Your NebulaGraph server port | |
| NEBULA_USER | Yes | Your NebulaGraph server user | |
| NEBULA_VERSION | No | NebulaGraph version (only v3 is supported) | v3 |
| NEBULA_PASSWORD | Yes | Your NebulaGraph server password |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_spaces | List all available spaces Returns: The available spaces |
| get_space_schema | Get the schema information of the specified space Args: space: The space to get the schema for Returns: The schema information of the specified space |
| execute_query | Execute a query Args: query: The query to execute space: The space to use Returns: The results of the query |
| find_path | Find paths between two vertices Args: src: The source vertex ID dst: The destination vertex ID space: The space to use depth: The maximum path depth limit: The maximum number of paths to return Returns: The path results |
| find_neighbors | Find the neighbors of the specified vertex Args: vertex: The vertex ID to query space: The space to use depth: The depth of the query, default is 1 Returns: The neighbors of the specified vertex |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |