
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
solvent-mcp
Advanced tools
MCP (Model Context Protocol) server for Solvent - Personal Finance Manager. This allows Claude to interact with your Solvent data through natural language.
Use this if you want to use Claude through the web interface (claude.ai).
The Connector URL format is:
https://your-solvent-domain.com/api/mcp?token=slvt_your_token_here
Use this if you want to use Claude Desktop on your computer.
Install Node.js (v18 or later) from nodejs.org
Install the MCP server globally:
npm install -g solvent-mcp
Or run directly with npx:
npx solvent-mcp --token slvt_xxx --api-url https://your-solvent-domain.com
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Add the following configuration:
{
"mcpServers": {
"solvent": {
"command": "npx",
"args": [
"solvent-mcp",
"--token", "slvt_your_token_here",
"--api-url", "https://your-solvent-domain.com"
]
}
}
}
Once connected, you can ask Claude things like:
| Tool | Description |
|---|---|
list_expenses | List all expenses (optionally with category info) |
get_expense | Get a single expense by ID |
create_expense | Create a new expense |
update_expense | Update an existing expense |
delete_expense | Delete an expense |
| Tool | Description |
|---|---|
list_incomes | List all incomes (optionally with category info) |
get_income | Get a single income by ID |
create_income | Create a new income |
update_income | Update an existing income |
delete_income | Delete an income |
| Tool | Description |
|---|---|
list_categories | List all categories (with optional filters) |
get_category | Get a single category by ID |
create_category | Create a new category |
update_category | Update an existing category |
delete_category | Delete a category |
| Tool | Description |
|---|---|
list_recurrings | List all recurring transactions |
get_recurring | Get a single recurring transaction by ID |
create_recurring | Create a new recurring transaction |
update_recurring | Update an existing recurring transaction |
delete_recurring | Delete a recurring transaction |
When creating an MCP token, you can control which operations Claude can perform:
| Permission | Allows |
|---|---|
| Expenses: Read | List and view expenses |
| Expenses: Write | Create, update, delete expenses |
| Incomes: Read | List and view incomes |
| Incomes: Write | Create, update, delete incomes |
| Categories: Read | List and view categories |
| Categories: Write | Create, update, delete categories |
| Recurrings: Read | List and view recurring transactions |
| Recurrings: Write | Create, update, delete recurring transactions |
cd mcp-server
npm install
npm run build
npm run dev -- --token slvt_xxx --api-url http://localhost:3000
Make sure you selected MCP as the token type when creating the token. API tokens cannot be used for MCP connections.
Your token may have been revoked. Create a new MCP token in Settings.
node --versionMIT
FAQs
MCP server for Solvent - Personal Finance Manager
The npm package solvent-mcp receives a total of 0 weekly downloads. As such, solvent-mcp popularity was classified as not popular.
We found that solvent-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.