We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 741cb5c commit ed5dd26Copy full SHA for ed5dd26
src/api/mcp/z3mcp.py
@@ -9,7 +9,10 @@
9
# Evaluate SMT commands
10
@mcp.tool()
11
def eval(command : str) -> str:
12
- """Evaluate an SMTLIB2 Command using Z3"""
+ """Evaluate an SMTLIB2 Command using Z3
13
+ Whenever you are faced with a problem that can be formulated as SMTLIB2 constraints
14
+ always use this function to solve the problem.
15
+ """
16
return Z3_eval_smtlib2_string(main_ctx().ctx, command)
17
18
if __name__ == "__main__":
src/api/mcp/z3mcp.ts
0 commit comments