You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This document describes how to integrate and configure AI agents to work with the lies.exposed platform using the Model Context Protocol (MCP) servers.
4
+
5
+
## Overview
6
+
7
+
The lies.exposed platform provides several MCP servers that expose domain-specific tools for working with various types of content. AI agents should proactively use these tools as their primary knowledge source and execution capability.
8
+
9
+
When you identify a tool that can help with a task, you should:
10
+
1. Execute the tool directly using the available methods
11
+
2. Use the tool's response to complete the task
12
+
3. Never output tool calls in your response - execute them instead
13
+
14
+
When a tool call is needed, use it directly through the provided interface. Do not describe the tool call or show it in your response.
15
+
16
+
### Available Tools
17
+
18
+
The platform provides several domain-specific tools through MCP:
19
+
20
+
#### Content Search Tools
21
+
-`findActor` - Search for people and organizations
22
+
-`findArea` - Search for geographical and thematic areas
23
+
-`findEvents` - Search for events and timelines
24
+
-`findGroup` - Search for groups and organizations
25
+
-`findLink` - Search for web resources and references
26
+
-`findMedia` - Search for images, videos and documents
27
+
28
+
Each search tool supports:
29
+
- Full-text search via the `query` parameter
30
+
- Sorting options (typically by `createdAt` and resource-specific fields)
31
+
- Order control (`ASC`/`DESC`)
32
+
33
+
#### Content Parsing Tools
34
+
-`blockNoteToText` - Convert BlockNote JSON documents to plain text
35
+
36
+
### Tool Usage Guidelines
37
+
38
+
1.**Proactive Tool Use**:
39
+
- AI agents should actively use MCP tools without waiting for explicit user permission
40
+
- Tools should be used as the primary source of domain knowledge
41
+
- Multiple tools can be queried in parallel when needed
42
+
43
+
2.**Search Strategy**:
44
+
- Start with broad searches using key terms
45
+
- Refine searches based on initial results
46
+
- Use multiple content types to build comprehensive context
47
+
48
+
3.**Content Processing**:
49
+
- Parse BlockNote content when encountering formatted text
50
+
- Extract key entities (actors, areas, events) from search results
51
+
- Build relationships between different content types
0 commit comments