AI-Driven Project Management: TensorPM
AI-powered project management - a Notion and Jira alternative with local-first architecture. Manage projects, track action items, and coordinate teams via MCP tools or A2A agent communication. Signed
AI-powered project management - a Notion and Jira alternative with local-first architecture. Manage projects, track action items, and coordinate teams via MCP tools or A2A agent communication. Signed
Real data. Real impact.
Emerging
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
AI-Powered Project Management - Intelligently manage projects, track action items, and coordinate teams with context-driven prioritization.
Local-first, no account required. Full app, free forever — use your own API keys (OpenAI, Claude, Gemini, Mistral) or local models (Ollama, vLLM, LLM studio). Optional: Account with cloud sync enables E2E encrypted collaboration across devices and teams.
Interact with TensorPM via MCP tools or A2A agent communication.
Signed & Notarized: macOS builds are code-signed and notarized by Apple. Windows builds are signed via Azure Trusted Signing.
brew tap neo552/tensorpm brew install --cask tensorpm
curl -fsSL https://tensorpm.com/download/linux -o ~/TensorPM.AppImage chmod +x ~/TensorPM.AppImage
Release Notes: https://github.com/Neo552/TensorPM-Releases/releases/latest
Alternative: https://tensorpm.com
TensorPM includes a built-in MCP server that runs locally. Install from within the app:
Requirement: TensorPM must be running for MCP tools to work.
Use the
set_api_key tool to configure AI providers directly from your AI client:
set_api_key provider: "openai" # openai, anthropic, google, mistral api_key: "sk-..."
Keys are securely stored in TensorPM. Write-only - keys cannot be read back.
TensorPM exposes a local A2A agent endpoint on port
37850.
No authentication required — A2A runs on localhost only, all local requests are trusted.
Step 1: Get Root Agent Card
curl http://localhost:37850/.well-known/agent.json
Returns the root agent card with links to all project agents.
Step 2: List Projects
curl http://localhost:37850/projects
Returns:
[ { "id": "project-uuid", "name": "My Project", "agentUrl": "http://localhost:37850/projects/project-uuid/a2a", "agentCardUrl": "http://localhost:37850/projects/project-uuid/.well-known/agent.json" } ]
Step 3: Get Project Agent Card
curl http://localhost:37850/projects/{projectId}/.well-known/agent.json
Returns the A2A agent card for a specific project with capabilities and supported methods.
Send messages to a project's AI agent using JSON-RPC:
curl -X POST http://localhost:37850/projects/{projectId}/a2a \ -H "Content-Type: application/json" \ -d '{ "jsonrpc": "2.0", "method": "message/send", "id": "1", "params": { "message": { "role": "user", "parts": [{"kind": "text", "text": "List high-priority items"}] } } }'
Supported JSON-RPC methods:
| Method | Description |
|---|---|
| Send a message and get a blocking response |
| Send a message and stream the response via SSE |
| Retrieve a task by ID with full state history |
| List tasks for the project with optional filters |
| Cancel a running task |
| Resume streaming updates for a running task |
Continue a conversation by passing
contextId:
{ "jsonrpc": "2.0", "method": "message/send", "id": "2", "params": { "contextId": "context-uuid-from-previous-response", "message": { "role": "user", "parts": [{"kind": "text", "text": "Tell me more about the first item"}] } } }
Tasks track the lifecycle of message requests. States:
submitted, working, input-required, completed, canceled, failed.
{ "jsonrpc": "2.0", "method": "tasks/get", "id": "1", "params": {"id": "task-uuid", "historyLength": 10} }
| Method | Endpoint | Description |
|---|---|---|
| | Root agent card |
| | List all projects with agent URLs |
| | Create a new project |
| | Get complete project data |
| | Project agent card |
| | List conversations |
| | Get message history |
| | List action items (supports filters) |
| | Create action items |
| | Update an action item |
| | JSON-RPC messaging |
| | List all workspaces with active workspace ID |
| | Switch to a different workspace |
Optional Auth: Set
A2A_HTTP_AUTH_TOKEN env var before starting TensorPM to enable token validation.
| Tool | Description |
|---|---|
| List all projects with names and IDs |
| Create a new project (basic, fromPrompt, or fromFile mode) |
| Get complete project data (read-only) |
| Query and filter action items |
| Create new action items |
| Update existing action items |
| Submit project updates for human review |
| Set AI provider API key (openai, anthropic, google, mistral) |
| List all workspaces (local + cloud) with active workspace ID |
| Switch to a different workspace |
Note: MCP tools provide direct access to action items. Core project context (profile, budget, people, categories) can only be modified by the TensorPM project manager agent — use A2A
message/send to request changes.
Tool parameters: Use the MCP tool schemas for detailed parameter information.
| Field | Type | Description |
|---|---|---|
| string | Unique identifier (auto-generated on create) |
| number | Human-readable sequential ID (e.g., 1, 2, 3) |
| string | Short title/summary |
| string | Detailed description |
| string | , , , |
| string | Category UUID |
| string[] | Array of Person UUIDs or names |
| string | ISO date (YYYY-MM-DD) - required, cannot be cleared |
| string | ISO date (YYYY-MM-DD), or to clear |
| string | , , , , |
| string | , , , , |
| string | , , , , |
| number | Priority score (1-100) |
| object | , or to clear |
| object | , or to clear |
| object | Actual effort: , or to clear |
| object | Actual budget spent: , or to clear |
| string | Reason when status is |
| array | Task dependencies (sourceId + type) |
Action items support dependencies for sequential task execution. Dependencies define which tasks must complete (or start) before others can begin.
| Type | Name | Meaning |
|---|---|---|
| Finish-to-Start | Task B cannot start until Task A finishes (most common) |
| Start-to-Start | Task B cannot start until Task A starts |
| Finish-to-Finish | Task B cannot finish until Task A finishes |
| Start-to-Finish | Task B cannot finish until Task A starts (rare) |
When creating action items via
submit_action_items, specify dependencies as:
{ "actionItems": [ { "text": "Task A - Research", "complexity": "simple" }, { "text": "Task B - Implementation", "complexity": "moderate", "dependencies": [ {"sourceId": "<id-of-task-A>", "type": "FS"} ] } ] }
Note:
sourceId must reference an existing action item already in the project. In MCP tools, targetId is set automatically to the current item, so you only provide sourceId and type.
Use
update_action_items to modify dependencies. Setting dependencies replaces all existing dependencies:
{ "updates": [ { "id": "<action-item-id>", "dependencies": [ {"sourceId": "<other-item-id>", "type": "FS"}, {"sourceId": "<another-item-id>", "type": "SS"} ] } ] }
Set to empty array
[] to clear all dependencies.
Basic (instant):
curl -X POST http://localhost:37850/projects \ -H "Content-Type: application/json" \ -d '{"name": "New Project", "description": "Optional description"}'
From prompt (AI-generated, async):
curl -X POST http://localhost:37850/projects \ -H "Content-Type: application/json" \ -d '{"name": "Mobile App", "mode": "fromPrompt", "prompt": "Build a habit tracker with streaks"}'
From file (AI-generated from document, async):
curl -X POST http://localhost:37850/projects \ -H "Content-Type: application/json" \ -d '{"name": "From Brief", "mode": "fromFile", "documentPath": "/path/to/brief.pdf"}'
Async modes return
status: "generating". AI populates goals, scope, milestones, risks in background.
curl http://localhost:37850/projects/{projectId}
curl "http://localhost:37850/projects/{projectId}/action-items?status=open&limit=10"
curl -X POST http://localhost:37850/projects/{projectId}/action-items \ -H "Content-Type: application/json" \ -d '{ "actionItems": [ {"text": "New task", "urgency": "high", "complexity": "moderate"} ] }'
curl -X PATCH http://localhost:37850/projects/{projectId}/action-items/{itemId} \ -H "Content-Type: application/json" \ -d '{"status": "completed"}'
curl http://localhost:37850/workspaces
Returns all accessible workspaces (local and cloud) with project counts and the active workspace ID.
curl -X POST http://localhost:37850/workspaces/{workspaceId}/activate
Switches to the specified workspace. Closes all open projects.
list_projects first to get available project IDsget_project to retrieve category and person IDs for filteringpropose_updates submissions require human approval before being appliedlocalhost:37850 — no auth required (localhost only)set_api_key) or in TensorPM SettingsNo automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.