-
Install Meshagent & Full Feature Set
-
Sign Up & Authenticate
- Create an account and authenticate per Meshagent docs:
- Getting Started with Meshagent CLI
-
Start a Test MCP Server as a Cloud Room Service
- This will launch a Meshagent Room in the cloud named
test
with an MCP server running as a service in that room. - The MCP server (
mcp-memory-service-test
) and its tools will be live only as long as the room is active.
- This will launch a Meshagent Room in the cloud named
-
Add a Chatbot Agent with the MCP Memory Toolkit
- This launches a chatbot linked to the MCP memory toolkit within the same room.
- Multiple toolkits may be assigned to a single agent.
- The command output provides a browser link to join the room interactively.
-
Test the Tools
- Visit the room link in your browser.
- Send a message to the agent to interact with the MCP server tools directly in the room chat interface.
Project Level Deployment
For production and persistent deployments: Register services at the Meshagent project level, so every newly created Room automatically gains access to the MCP server tools and a chatbot—no need to run them locally or as separate processes. This makes MCP toolkits and agents available across all rooms.-
Create the MCP Memory Service Project-Wide
-
Create the MCP Memory Chatbot Project-Wide
Tools Available
Tools provided by this MCP Server | Short Description |
---|---|
add_observations | Add new observations to existing entities in the knowledge graph |
create_entities | Create multiple new entities in the knowledge graph |
create_relations | Create multiple new relations between entities in the knowledge graph. |
delete_entities | Delete multiple entities and their associated relations from the knowledge graph |
delete_observations | Delete specific observations from entities in the knowledge graph |
delete_relations | Delete multiple relations from the knowledge graph |
open_nodes | Open specific nodes in the knowledge graph by their names |
read_graph | Read the entire knowledge graph |
search_nodes | Search for nodes in the knowledge graph based on a query |
Tools Details
Tool: add_observations
Add new observations to existing entities in the knowledge graph
Parameters | Type | Description |
---|---|---|
observations | array |
Tool: create_entities
Create multiple new entities in the knowledge graph
Parameters | Type | Description |
---|---|---|
entities | array |
Tool: create_relations
Create multiple new relations between entities in the knowledge graph. Relations should be in active voice
Parameters | Type | Description |
---|---|---|
relations | array |
Tool: delete_entities
Delete multiple entities and their associated relations from the knowledge graph
Parameters | Type | Description |
---|---|---|
entityNames | array | An array of entity names to delete |
Tool: delete_observations
Delete specific observations from entities in the knowledge graph
Parameters | Type | Description |
---|---|---|
deletions | array |
Tool: delete_relations
Delete multiple relations from the knowledge graph
Parameters | Type | Description |
---|---|---|
relations | array | An array of relations to delete |
Tool: open_nodes
Open specific nodes in the knowledge graph by their names
Parameters | Type | Description |
---|---|---|
names | array | An array of entity names to retrieve |
Tool: read_graph
Read the entire knowledge graph
Tool: search_nodes
Search for nodes in the knowledge graph based on a query
Parameters | Type | Description |
---|---|---|
query | string | The search query to match against entity names, types, and observation content |
Meshagent & MCP Server Links
- Meshagent: https://www.meshagent.com/
- Documentation: https://docs.meshagent.com
- Meshagent MCP Memory Tool Docker Image: https://hub.docker.com/r/meshagent/mcp-memory
- What is an MCP Server?