AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Datomic Mcp Server

mcp-xlisp-datomic-mcp-server ยท by xlisp

๐Ÿš€ Datomic MCP Server

โ€” No reviews yet
0 installs
5 views
0.0% viewโ†’install

Install

$ agentstack add mcp-xlisp-datomic-mcp-server

โœ“ scanned ยท โœ“ verified, works with Claude Code, Cursor, and more.

Security review

โœ“ Passed

No issues found. Passed automated security review. ยท v0.1.0 How review works โ†’

  • โœ“ Prompt-injection patterns
  • โœ“ Secret / credential exfiltration
  • โœ“ Dangerous shell & filesystem operations
  • โœ“ Untrusted network calls
  • โœ“ Known-malicious package signatures

What it can access

  • โœ“ Network access No
  • โœ“ Filesystem access No
  • โœ“ Shell / process execution No
  • โœ“ Environment & secrets No
  • โœ“ Dynamic code execution No

From automated source analysis of v0.1.0. โ€œUsedโ€ means the capability is present in the source โ€” more access means more to trust, not that itโ€™s unsafe.

View the full security report โ†’

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-xlisp-datomic-mcp-server)

Reliability & compatibility

โœ“ Security review passed
0 installs to date
โ€” no reviews yet
โ—‹ 8mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work โ†’
Are you the author of Datomic Mcp Server? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

โšก Datomic MCP Server

AI. Query. Persist. Extend. A robust Clojure-based MCP server designed for querying Datomic databases and integrating with AI-powered workflows.


๐Ÿ” Key Features

๐Ÿ—„๏ธ Connect to Datomic (SQL / Dev / Cloud)

  • Seamlessly connect to your Datomic database and run queries directly from AI workflows.
  • Works with Datomic Pro (SQL, Dev-local) and Datomic Cloud setups.

๐Ÿ“‚ Query entity relationships

๐Ÿ“Š Aggregate queries & computations

๐Ÿงพ Entity properties and history

  • Explore entity attributes
  • Query temporal history (as-of, since)
  • Transaction-time navigation

โš™๏ธ Getting Started

โ–ถ๏ธ Run the MCP Server

Run with Clojure CLI:

clojure -X:mcp
````

Or from Emacs REPL:

```clojure
(mcp-server)

โœ… Check Server Health

Use the following command to verify the MCP server is up and responding to JSON-RPC:

echo '{"jsonrpc": "2.0", "id": 1, "method": "initialize", "params": {"protocolVersion": "2024-11-05", "capabilities": {}, "clientInfo": {"name": "test", "version": "1.0"}}}' \
| /usr/local/bin/clojure -M -m datomic-mcp.core

Expected response:

Datomic MCP Server running on STDIO transport.
{"jsonrpc":"2.0","method":"notifications/tools/list_changed"}
...
{"jsonrpc":"2.0","id":1,"result":{"protocolVersion":"2024-11-05","capabilities":{"logging":{},"tools":{"listChanged":true}},"serverInfo":{"name":"datomic-server","version":"0.1.0"}}}

๐Ÿ–ฅ๏ธ MCP Client Configuration (Claude Desktop)

Example client setup for launching the server from Claude Desktop:

{
    "datomic-mcp": {
      "command": "/bin/bash",
        "args": [
          "-c",
          "cd /Users/xlisp/CljPro/datomic-mcp-server && /usr/local/bin/clojure -M -m datomic-mcp.core"
        ]
    }

...

}
  • Tools

๐Ÿ”ฎ Roadmap

inspired by https://github.com/xlisp/datascript-mcp-server

  1. Query live Datomic databases ๐Ÿ‘‰ connect to SQL / Dev-local / Cloud
  2. Hybrid queries across Datomic + DataScript ๐Ÿ‘‰ offline + persistent data https://github.com/xlisp/datascript-mcp-server
  3. Visualize Datomic relationships ๐Ÿ‘‰ Visualization MCP Server
  4. Import/export datasets ๐Ÿ‘‰ transit, edn, or AI-generated inserts
  5. Filesystem MCP integration ๐Ÿ‘‰ browse schema & migrations https://github.com/xlisp/filesystem-mcp-server
  6. Support Datomic history queries ๐Ÿ‘‰ temporal navigation (as-of, since, history)

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.


FQA

change list

  • [x] Datomic in-memory database already supports
  • [x] Connect any Datomic database url

Run in JDK 17 (datomic client)

export JAVA_HOME="/Library/Java/JavaVirtualMachines/microsoft-17.jdk/Contents/Home" #'/Library/Java/JavaVirtualMachines/microsoft-11.jdk/Contents/Home'
export PATH=$JAVA_HOME/bin:$PATH
export CPPFLAGS="-I/Library/Java/JavaVirtualMachines/microsoft-17.jdk/Contents/Home/include"

Run datomic transactor

  • datomic-pro-1.0.6165 transactor must run on java 1.8 ( brew install openjdk@8 ), other jdk will errors Execution error (ActiveMQInternalErrorException) at org.apache.activemq.artemis.core.protocol.core.impl.ChannelImpl/sendBlocking (ChannelImpl.java:404).
โžœ  datomic-pro-1.0.6165 ./rundatomic.sh
Launching with Java options -server -Xms4g -Xmx4g -XX:+UseG1GC -XX:MaxGCPauseMillis=50
Starting datomic:sql://?jdbc:postgresql://localhost:5432/db123123?user=postgres&password=123456, you may need to change the user and password parameters to work with your jdbc driver ...

Built with Clojure. Powered by Datomic. Inspired by the future of persistent querying. In the Source we trust.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source โ€” we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.