Using Picasi in the AI assistant - Getting started
Imagine you’re working on a competitive analysis in Claude and want to know what Muster AG posted on LinkedIn last week. Instead of opening the Picasi app, you simply ask, “Show me the latest updates from Muster AG in Picasi.” Claude responds immediately with the current data.
This is possible via MCP—the Model Context Protocol. Picasi implements an MCP server that allows AI assistants to work with your Workspace data: search for updates, list sources, retrieve reports.
This lesson shows you how to get started with Claude Code, the most commonly used method.
What you need
- A Picasi account with Admin or Owner role
- Claude Code CLI (installed and logged in)
How to proceed
-
Navigate to AI Connections
In Picasi, open the Settings menu and click on AI Connections and Tokens. Here you can manage all API tokens and view active OAuth connections.

-
Create an API token
Click on Create New Token. Give it a name that clearly indicates its purpose—for example,
Claude Code – LenaorClaude Code – Agentur.Select the appropriate role:
- Member — can read updates and generate AI reports; sufficient for most use cases
- Admin — can also create and edit sources and channels
Click Create Token.

-
Copy MCP URL
On the same page, you’ll see your MCP URL. It looks something like this:
https://picasi.app/mcp/t-xxxxxxxxxxCopy this URL—you’ll need it in the next step.
-
Configure Claude Code
Open a terminal and add Picasi as an MCP server to Claude Code:
Terminal window claude mcp add picasi \--transport http \--url https://picasi.app/mcp/t-xxxxxxxxxx \--header "Authorization: Bearer DEIN_TOKEN"Replace
t-xxxxxxxxxxwith your MCP URL andDEIN_TOKENwith the token from step 2.Alternatively, you can enter the configuration directly into the
.mcp.jsonin your project root:{"mcpServers": {"picasi": {"type": "http","url": "https://picasi.app/mcp/t-xxxxxxxxxx","headers": {"Authorization": "Bearer DEIN_TOKEN"}}}} -
Test the connection
Launch Claude Code and ask something like:
> What did Muster AG post in Picasi last week?
Or:
> Show me my latest AI reports in Picasi.
If the connection works, Claude will respond with real data from your workspace.

What you can now do with Picasi in the AI Assistant
- Search for updates by source, time period, and topic
- List sources and channels
- Retrieve reports and process them in the chat
- Create sources and manage channels (with an admin token)
You can find a complete list of available tools in the MCP Tools Reference.
What’s next?
You’ve connected Picasi to Claude Code. From here, you can incorporate Picasi data into any analysis without switching between tools.