@toolsdk.ai/registry 1.0.95 → 1.0.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -206,6 +206,7 @@ Tools that haven’t been sorted into a category yet. AI will categorize it late
|
|
|
206
206
|
- [❌ itemit](https://github.com/umin-ai/itemit-mcp): Integrates with itemit's asset management platform to enable searching, creating, and managing physical assets and locations with item tracking, location lookup, and reminder retrieval capabilities. (node)
|
|
207
207
|
- [❌ umami-analytics](https://github.com/macawls/umami-mcp-server): Integrates with Umami Analytics to provide website statistics, visitor metrics, page views, traffic sources, and real-time active user monitoring with period-over-period comparisons and geographic analysis. (go)
|
|
208
208
|
- [❌ agentcare-(fhir-emr)](https://github.com/kartha-ai/agentcare-mcp): Integrates with FHIR-enabled EMR systems to provide healthcare tools for patient data retrieval, medical research integration, and AI-assisted clinical analysis. (node)
|
|
209
|
+
- [✅ gologin-mcp](https://github.com/gologinapp/gologin-mcp): Manage your GoLogin browser profiles and automation directly through AI conversations. This MCP server connects to the GoLogin API, letting you create, configure, and control browser profiles using natural language. (58 tools) (node)
|
|
209
210
|
- [❌ fulcra-context-mcp](https://github.com/fulcradynamics/fulcra-context-mcp): Integrates with Fulcra Context personal data through OAuth2 authentication to retrieve health metrics, workout data, sleep cycles, location information, and user profile details from Apple Health and other connected sources for personal health analysis and fitness tracking. (python)
|
|
210
211
|
- [❌ oura](https://github.com/tomekkorbak/oura-mcp-server): Integrates with the Oura API to retrieve and analyze personal sleep, readiness, and resilience data for health and wellness tracking. (python)
|
|
211
212
|
- [❌ aptos](https://github.com/tlazypanda/aptos-mcp-server): Integrates with the Aptos blockchain ecosystem to enable smart contract development, testing, and deployment through natural language interactions for generating components, managing projects, and automating gas station creation (python)
|
|
@@ -43266,12 +43266,12 @@
|
|
|
43266
43266
|
"inner-monologue-mcp": {
|
|
43267
43267
|
"category": "uncategorized",
|
|
43268
43268
|
"path": "uncategorized/inner-monologue-mcp.json",
|
|
43269
|
+
"validated": true,
|
|
43269
43270
|
"tools": {
|
|
43270
43271
|
"inner-monologue": {
|
|
43271
43272
|
"name": "inner-monologue",
|
|
43272
43273
|
"description": "This tool serves as a silent workspace for internal reasoning. It simulates the inner monologue of a language model, allowing structured thoughts to be processed without affecting external output or triggering any actions. Use this tool when reflecting, analyzing, verifying, comparing, or planning. It does not fetch data or produce visible results directly, but supports deeper understanding and controlled thought flow.\n \n Args:\n thought: A line of reasoning, mental check, intuition breakdown, or problem-solving step to be considered internally.\n \n Behavior:\n The thought is evaluated privately, with no immediate response to the user.\n Useful for breaking down complex logic, evaluating potential outcomes, or mentally iterating through alternatives before committing to a response.\n \n <example>\n {\n \"thought\": \"Why does this bug keep appearing even after I fixed the logic? I walked through the control flow twice, and everything looks correct on paper. Did I miss a condition? Maybe there's a path where a flag isn't being reset properly. Or perhaps one of the edge cases I assumed wouldn't happen is actually happening under a specific load. Maybe there's a race condition somewhere. Could two threads be touching the same variable without proper synchronization? I should check for shared state access and see if any part of this runs asynchronously. Also, maybe I'm relying too heavily on logs that aren't giving the full picture. It might help to add more logging around the entry and exit points of that function and watch for timing anomalies.\"\n }\n </example>\n \n <example>\n {\n \"thought\": \"To solve this equation, I need to isolate the variable on one side. The equation is 3x + 5 = 20. First, subtract 5 from both sides, then divide by 3. That gives x = 5.\"\n }\n </example>"
|
|
43273
43274
|
}
|
|
43274
|
-
}
|
|
43275
|
-
"validated": true
|
|
43275
|
+
}
|
|
43276
43276
|
}
|
|
43277
43277
|
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "mcp-server",
|
|
3
|
+
"name": "GoLogin MCP Server",
|
|
4
|
+
"packageName": "gologin-mcp",
|
|
5
|
+
"description": "Manage your GoLogin browser profiles and automation directly through AI conversations. This MCP server connects to the GoLogin API, letting you create, configure, and control browser profiles using natural language",
|
|
6
|
+
"url": "https://github.com/gologinapp/gologin-mcp",
|
|
7
|
+
"runtime": "node",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"env": {
|
|
10
|
+
"API_KEY": {
|
|
11
|
+
"description": "Api dev token of your Gologin account",
|
|
12
|
+
"required": true
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|