Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Pyke MCP ServerProve that Socrates is mortal given that all humans are mortal and Socrates is human."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Pyke MCP Server
An MCP (Model Context Protocol) server for the Pyke logic programming inference engine. This server enables LLMs to perform logical reasoning through knowledge bases with facts, rules, and queries.
Features
Fact Management: Add ground truth facts to the knowledge base
Rule Definition: Define inference rules using forward chaining
Query Execution: Check if facts can be derived from the knowledge base
Goal Proving: Find all variable bindings that satisfy a goal
Session Management: Support multiple independent knowledge bases
Logic-LLM Compatible: Load programs in Logic-LLM format
Installation
Using pip
From source
Dependencies
Python 3.10+
mcp>=1.2.0pyke3>=1.1.1
Quick Start
Running the Server
Configuration for Claude Desktop
Add to your claude_desktop_config.json:
macOS/Linux:
Windows:
Or with explicit Python path:
Available Tools
add_fact
Add a fact to the knowledge base.
Examples:
Human(Socrates, True)- Socrates is humanParent(John, Mary)- John is a parent of Mary
add_rule
Add an inference rule using forward chaining.
Examples:
Human($x, True) >>> Mortal($x, True)- All humans are mortalParent($x, $y) && Parent($y, $z) >>> Grandparent($x, $z)- Grandparent relationship
add_facts_and_rules
Bulk add multiple facts and rules at once.
query
Check if a specific fact can be derived.
Example:
Mortal(Socrates, True)- "Is Socrates mortal?"
prove_goal
Find all variable bindings that satisfy a goal.
Examples:
Mortal($who, True)- "Who is mortal?"Parent($parent, Mary)- "Who are Mary's parents?"
get_program
Display the current knowledge base contents.
clear_program
Clear all facts and rules from the session.
load_logic_program
Load a complete logic program from formatted text (Logic-LLM compatible).
list_sessions
List all active sessions.
delete_session
Delete a specific session.
Usage Examples
Classic Syllogism
Family Relationships
Loading a Complete Program
Logic Program Format
The server accepts programs in the Logic-LLM format:
Syntax Rules
Facts: Ground assertions without variables
Human(Socrates, True)Age(John, 30)
Rules: Implications with variables (prefixed with
$)Human($x, True) >>> Mortal($x, True)Multiple premises joined with
&&
Variables: Prefixed with
$$x,$person,$value
Values: Can be boolean (
True/False) or stringsTrue,False,Socrates,Blue
Session Management
The server supports multiple independent sessions:
Error Handling
The server provides clear error messages for:
Invalid fact/rule syntax
Query execution failures
Missing Pyke installation
Session not found
Based On
Logic-LLM - Pyke solver implementation
clingo-mcp - MCP server interface reference
License
MIT License