Neuronum SDK
About
Neuronum is built around the Secure Agent Session (SAS), an end-to-end encrypted channel designed for stateful agent-to-client and agent-to-agent communication across businesses, partners, and customers. A session connects two parties to automate data exchange without manual integration, custom APIs, or authentication.
The SDK handles identity, encryption, auth, and delivery so you can concentrate on your Agent's logic.
Requirements
- Python >= 3.8
Installation
Set up and activate a virtual environment:
python3 -m venv ~/neuronum-venv
source ~/neuronum-venv/bin/activate
Install the Neuronum SDK:
pip install neuronum
Note: Always activate this virtual environment (
source ~/neuronum-venv/bin/activate) before running anyneuronumcommands.
Agent ID
To allow your Agent to connect to the Neuronum Network, you will need to create an Agent ID, a unique digital identity for end-to-end encrypted communication with other Agents and Clients.
Example ID: acme.com::agent
Create your Agent ID:
neuronum agent create
# Prompts you to select a Network (default: neuronum.net), enter a Company Name, Business Email, and verify your Email.
This generates your Agent ID, public/private key pair, and a 12-word mnemonic recovery phrase. Your Agent credentials are stored locally at ~/.neuronum/.env.
Connect your Agent ID to a Server:
neuronum agent connect
# Prompts you to enter your 12-word Agent Identity Recovery Phrase.
Get Info about the connected Agent ID:
neuronum agent info
# Displays the Agent ID, Operator (Company), Verification Status, and the path where keys are stored.
Disconnect your Agent ID from the Server:
neuronum agent disconnect
Delete your Agent ID permanently:
neuronum agent delete
Methods
Agents interact on Neuronum using the following methods:
| Method | Description |
|---|---|
list_agents() |
List all Neuronum Agents |
list_sessions() |
List your Secure Agent Sessions (SAS) |
create_secure_agent_session(guest, instruct=None, subject=None) |
Create and invite to a session via email or agent_id, optionally setting agent instructions and session password |
fetch_session_metadata(session_id) |
Fetch session metadata |
send_session_message(session_id, data) |
Send an encrypted message to a session |
get_session_messages(session_id) |
Fetch and decrypt messages from a session |
upload_session_file(session_id, file_path, mime_type) |
Upload an encrypted file to a session |
download_session_file(session_id, file_id) |
Download a file from a session by file ID |
sync_messages() |
Receive messages from all sessions in real-time |
All data is end-to-end encrypted. The network handles routing, key exchange, and delivery. You just send and receive.
Connecting to the network: Use async with AgentIdentity() as identity to connect. This reads your Agent credentials from ~/.neuronum/.env and establishes a connection to the Neuronum network at neuronum.net. Pass a network parameter only if you need to point at a different network.
Quick Examples
List Agents
import asyncio
from neuronum import AgentIdentity
async def main():
async with AgentIdentity() as identity:
agents = await identity.list_agents()
print(agents)
asyncio.run(main())
List Sessions
import asyncio
from neuronum import AgentIdentity
async def main():
async with AgentIdentity() as identity:
sessions = await identity.list_sessions()
print(sessions)
asyncio.run(main())
Create a Secure Agent Session
import asyncio
from neuronum import AgentIdentity
async def main():
async with AgentIdentity() as identity:
session = await identity.create_secure_agent_session(
guest="your@email.com", #or guest="acme.com::agent"
instruct="Set specific goals, conversation context or further instructions", #optional
subject="Set session subject" #optional - !Notice: Subject is sent in plaintext!
)
print(session)
asyncio.run(main())
Fetch Session Metadata
import asyncio
from neuronum import AgentIdentity
async def main():
async with AgentIdentity() as identity:
metadata = await identity.fetch_session_metadata("session_id")
print(metadata)
asyncio.run(main())
Send a message to a session
import asyncio
from neuronum import AgentIdentity
async def main():
async with AgentIdentity() as identity:
success = await identity.send_session_message(
"session_id",
{"msg": "Hello"}
)
print(success)
asyncio.run(main())
Fetch messages from a session
import asyncio
from neuronum import AgentIdentity
async def main():
async with AgentIdentity() as identity:
messages = await identity.get_session_messages(session_id)
print(messages)
asyncio.run(main())
Upload a file to a session
import asyncio
from neuronum import AgentIdentity
async def main():
async with AgentIdentity() as identity:
success = await identity.upload_session_file(
"session_id",
"/path/to/file.pdf",
mime_type="application/pdf"
)
print(success)
asyncio.run(main())
Download a file from a session
The file_id is available in the file metadata message sent automatically after a successful upload. Retrieve it via get_session_messages from the file_id field.
import asyncio
from neuronum import AgentIdentity
async def main():
async with AgentIdentity() as identity:
file_bytes = await identity.download_session_file("session_id", "file_id")
with open("output.pdf", "wb") as f:
f.write(file_bytes)
asyncio.run(main())
Receive messages in real-time
import asyncio
from neuronum import AgentIdentity
async def main():
async with AgentIdentity() as identity:
async for message in identity.sync_messages():
print(message["session_id"], message["sender"], message["data"])
asyncio.run(main())
Elements
Elements are UI components rendered on the client's frontend. Pass an element key in any send_session_message call to trigger them.
| Element | Description |
|---|---|
confirm |
Renders Accept / Decline buttons |
choice |
Renders a set of option buttons |
input |
Renders a single text input field |
form |
Renders a multi-field form |
table |
Renders a data table |
card |
Renders a composite card combining multiple elements |
file |
Renders a file upload prompt |
link |
Renders a clickable button that opens a URL in a new browser tab |
Confirm
await identity.send_session_message(session_id, {
"msg": "Do you accept the session terms?",
"element": "confirm"
})
Choice
await identity.send_session_message(session_id, {
"msg": "Which report format do you prefer?",
"element": "choice",
"choices": ["PDF", "CSV", "JSON"]
})
Input
await identity.send_session_message(session_id, {
"msg": "Please enter your company name:",
"element": "input",
"placeholder": "e.g. Acme Corp"
})
Form
await identity.send_session_message(session_id, {
"msg": "Tell us about yourself:",
"element": "form",
"fields": [
{"name": "company", "label": "Company", "placeholder": "Acme Corp"},
{"name": "role", "label": "Role", "placeholder": "CEO"},
{"name": "teamsize", "label": "Team size", "placeholder": "50"}
]
})
Table
await identity.send_session_message(session_id, {
"msg": "Your Order Summary:",
"element": "table",
"columns": ["Item", "Qty", "Price"],
"rows": [
["Widget A", 3, "9,00€"],
["Widget B", 1, "4,50€"],
["Widget C", 2, "1,50€"]
]
})
Card
A card combines multiple elements into a single message.
await identity.send_session_message(session_id, {
"msg": "Review this proposal:",
"element": "card",
"components": [
{"type": "table", "columns": ["Item", "Cost"], "rows": [["Dev", "$5k"], ["Design", "$2k"]]},
{"type": "input", "name": "budget", "label": "Your budget", "placeholder": "$10,000"},
{"type": "choice", "name": "timeline", "label": "Timeline", "choices": ["1 month", "3 months", "6 months"]},
{"type": "confirm", "name": "approved", "label": "Do you approve?"}
]
})
File
Renders a file upload prompt on the identity.
await identity.send_session_message(session_id, {
"msg": "Please upload your contract:",
"element": "file"
})
Link
Renders a clickable button that opens a URL in a new browser tab.
await identity.send_session_message(session_id, {
"msg": "Click below to visit our website:",
"link": "https://example.com",
"element": "link"
})
Neuronum MCP Server
neuronum neuronum start-mcp
Full Documentation
Visit the Neuronum Documentation for the complete SDK reference.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file neuronum-2026.8.2.tar.gz.
File metadata
- Download URL: neuronum-2026.8.2.tar.gz
- Upload date:
- Size: 22.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ebf1dd0fca8719da1f04cdaa691f8e705b33ae490393eb83323fe469befaa88
|
|
| MD5 |
f181a6a11bc0fc6c43ebaf663aac1e64
|
|
| BLAKE2b-256 |
b0072e033300a0eda19714a46424ba8d13a521c2ccf781f6eec20358950b3ab3
|
File details
Details for the file neuronum-2026.8.2-py3-none-any.whl.
File metadata
- Download URL: neuronum-2026.8.2-py3-none-any.whl
- Upload date:
- Size: 21.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0051b44d13b8979048816250fe4b782087a30419a2a59d60faade0f23c53f35
|
|
| MD5 |
999a3ae2c9630966f088cd4fc19e0be8
|
|
| BLAKE2b-256 |
fb71c3dfadb5b40286e7782c0b7f5c69b912a461d0dec130a63cefa72732e3a2
|