- Home
- MCP servers
- Allabolag
Allabolag
- javascript
3
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"paliago-allabolag-mcp": {
"command": "node",
"args": [
"/Users/alvinjohansson/code/personal/allabolag-mcp/dist/index.js"
]
}
}
}You run a local MCP server that exposes a curated Allabolag data source to MCP clients. This lets you develop, test, and experiment against a deterministic, local copy without hitting remote services each time. You configure a local MCP entry and start it with a runtime you prefer, then connect your MCP client to the local endpoint or use a local copy during development.
How to use
To use this MCP server with an MCP client, you provide the client with a local MCP entry that describes how to run the server locally. You can create a local copy of this MCP on your machine or register it as a global MCP entry so you can reuse it across projects.
A practical setup option is to place a local configuration file at .cursor/mcp.json to define how to start the server locally, or place the same configuration at ~/.cursor/mcp.json to share it globally on your machine. The example below shows how to reference the local runtime and the built index file.
Using a local Allabolag MCP entry
{
"mcpServers": {
"allabolag": {
"command": "node",
"args": [
"/Users/alvinjohansson/code/personal/allabolag-mcp/dist/index.js"
]
}
}
}