- Home
- MCP servers
- Yosider Cosense
Yosider Cosense
- javascript
0
GitHub Stars
javascript
Language
7 months ago
First Indexed
3 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": {
"mcp-mirror-yosider_cosense-mcp-server": {
"command": "node",
"args": [
"/path/to/cosense-mcp-server/build/index.js"
],
"env": {
"COSENSE_SID": "your_sid",
"COSENSE_PROJECT_NAME": "your_project_name"
}
}
}
}This MCP server provides a Cosense-specific interface that lets you retrieve pages and control Cosense functionality from your local environment. It runs as a stdio-based server, enabling smooth integration with MCP clients and desktop tools.
How to use
You run the Cosense MCP server locally and connect your MCP client to it. Start the server with the command line shown in the setup instructions, ensuring the required environment variables are set for your Cosense project and session. Your MCP client can then request pages from Cosense or trigger actions exposed by the server. If you use Claude Desktop, you can register the server here so it launches automatically alongside other MCP servers.
How to install
Prerequisites you need before installing: Node.js and npm. Make sure you have a working Node.js runtime and npm installed on your system.
Clone the repository, install dependencies, and build the server using the following steps.
git clone https://github.com/funwarioisii/cosense-mcp-server.git
cd cosense-mcp-server
npm install
npm run build
Additional setup details
To use the Cosense MCP server with Claude Desktop, add the MCP server configuration to Claude's config file.
{
"mcpServers": {
"cosense-mcp-server": {
"command": "node",
"args": ["/path/to/cosense-mcp-server/build/index.js"],
"env": {
"COSENSE_PROJECT_NAME": "your_project_name",
"COSENSE_SID": "your_sid"
}
}
}
}
Debugging
MCP servers communicate over stdio, which can be tricky to debug. You can use the MCP Inspector, which provides debugging tools accessible via a URL when you run the inspector script.
npm run inspector
Available tools
get_page
Fetch a Page from the cosense MCP server via the standard MCP client workflow.